aboutsummaryrefslogtreecommitdiff
path: root/commands
diff options
context:
space:
mode:
Diffstat (limited to 'commands')
-rw-r--r--commands/Fun/slots.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/commands/Fun/slots.js b/commands/Fun/slots.js
index 303dd02..223ebb6 100644
--- a/commands/Fun/slots.js
+++ b/commands/Fun/slots.js
@@ -40,13 +40,14 @@ exports.run = async (bot, msg) => {
if (number2 == number1 + 1 && number3 == number2 + 1) {
+ await bot.plugins.economy.add(msg.author.id, 1000);
const balance = await bot.plugins.economy.get(msg.author.id);
- return await msg.channel.send('You won 10 credits!\nCurrent Balance: ' + balance + ' \n> ' + emojify(number1, number2, number3));
+ return await msg.channel.send('You won 1000 credits!\nCurrent Balance: ' + balance + ' \n> ' + emojify(number1, number2, number3));
}
else if (number2 == number3 - 1 && 1 == number2 - 1) {
- await bot.plugins.economy.add(msg.author.id, 15);
+ await bot.plugins.economy.add(msg.author.id, 1500);
const balance = await bot.plugins.economy.get(msg.author.id);
- return await msg.channel.send('You won 15 credits!\nCurrent Balance: ' + balance + ' \n> ' + emojify(number1, number2, number3));
+ return await msg.channel.send('You won 1500 credits!\nCurrent Balance: ' + balance + ' \n> ' + emojify(number1, number2, number3));
}
else {
await bot.plugins.economy.subtract(msg.author.id, 10);