From 2c604012f8dc20787c73d6d6d5c11fc933070347 Mon Sep 17 00:00:00 2001 From: Unknown Date: Sun, 18 Mar 2018 21:15:59 -0400 Subject: moeny --- commands/Fun/slots.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'commands') 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); -- cgit v1.2.3