richembeds available everywhere and other things
This commit is contained in:
parent
128d2854fd
commit
c297e45a64
1 changed files with 4 additions and 2 deletions
|
@ -8,9 +8,10 @@ const MessageHandler = require('./util/handlers/messageHandler');
|
||||||
const Functions = require('./util/functions');
|
const Functions = require('./util/functions');
|
||||||
const Database = require('./util/database');
|
const Database = require('./util/database');
|
||||||
const Logger = require('./util/logger');
|
const Logger = require('./util/logger');
|
||||||
|
const RichEmbed = require('./util/embed');
|
||||||
const sentry = require('@sentry/node');
|
const sentry = require('@sentry/node');
|
||||||
const yaml = require('js-yaml');
|
const yaml = require('js-yaml');
|
||||||
const constants = require('./assets/constants');
|
const emojis = require('./assets/emojis.json');
|
||||||
const config = yaml.safeLoad(require('fs').readFileSync('../botconfig.yml', 'utf8'));
|
const config = yaml.safeLoad(require('fs').readFileSync('../botconfig.yml', 'utf8'));
|
||||||
const version = require('../package.json').version;
|
const version = require('../package.json').version;
|
||||||
|
|
||||||
|
@ -24,8 +25,9 @@ class WoomyClient extends Eris.Client {
|
||||||
this.version = version;
|
this.version = version;
|
||||||
|
|
||||||
// Essential modules
|
// Essential modules
|
||||||
this.constants = constants;
|
this.emojis = emojis;
|
||||||
this.logger = Logger;
|
this.logger = Logger;
|
||||||
|
this.RichEmbed = RichEmbed;
|
||||||
this.db = new Database(this);
|
this.db = new Database(this);
|
||||||
this.functions = new Functions(this);
|
this.functions = new Functions(this);
|
||||||
this.commandLoader = new CommandLoader(this);
|
this.commandLoader = new CommandLoader(this);
|
||||||
|
|
Loading…
Reference in a new issue