aboutsummaryrefslogtreecommitdiff
path: root/commands/Fun/getcredits.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/Fun/getcredits.js')
-rw-r--r--commands/Fun/getcredits.js27
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.',
+};