diff options
| author | Unknown <jtsshieh@outlook.com> | 2018-03-09 22:24:10 -0500 |
|---|---|---|
| committer | Unknown <jtsshieh@outlook.com> | 2018-03-09 22:24:10 -0500 |
| commit | 66f92c9566e7410f9bc8273d709eec7adbb15326 (patch) | |
| tree | b77ad1743070145fc761699a7b98cd729bc3e0f6 /commands/Fun/getcredits.js | |
| parent | f5af521bac7bfa34a53a069d031428e151ef9c6e (diff) | |
| download | PokeBot-66f92c9566e7410f9bc8273d709eec7adbb15326.tar.gz PokeBot-66f92c9566e7410f9bc8273d709eec7adbb15326.tar.bz2 PokeBot-66f92c9566e7410f9bc8273d709eec7adbb15326.zip | |
FIX DUMBO
Diffstat (limited to 'commands/Fun/getcredits.js')
| -rw-r--r-- | commands/Fun/getcredits.js | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/commands/Fun/getcredits.js b/commands/Fun/getcredits.js index c2736b0..21c6dd1 100644 --- a/commands/Fun/getcredits.js +++ b/commands/Fun/getcredits.js @@ -19,17 +19,16 @@ * *************************************/ exports.run = (bot, msg) => { - bot.exports.economy.add(msg.author.id, 10); - msg.reply('Added 10 credits.'); - }; - - exports.conf = { - aliases: [], - guildOnly: true, - }; - - exports.help = { - name: 'getcredits', - description: 'Add credits to your account.', - }; -
\ No newline at end of file + bot.plugins.economy.add(msg.author.id, 10); + msg.reply('Added 10 credits.'); +}; + +exports.conf = { + aliases: [], + guildOnly: true, +}; + +exports.help = { + name: 'getcredits', + description: 'Add credits to your account.', +}; |
