aboutsummaryrefslogtreecommitdiff
path: root/commands/Fun/slots.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/Fun/slots.js')
-rw-r--r--commands/Fun/slots.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/Fun/slots.js b/commands/Fun/slots.js
index ddd6757..0fe5af9 100644
--- a/commands/Fun/slots.js
+++ b/commands/Fun/slots.js
@@ -31,12 +31,12 @@ 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 1000 credits!\nCurrent Balance: ' + balance + ' \n> ' + emojify(number1, number2, number3));
+ return await msg.channel.send('You won 1000 PokeCoins!\nCurrent Balance: ' + balance + ' \n> ' + emojify(number1, number2, number3));
}
else if (number2 == number3 - 1 && number1 == number2 - 1) {
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 1500 credits!\nCurrent Balance: ' + balance + ' \n> ' + emojify(number1, number2, number3));
+ return await msg.channel.send('You won 1500 PokeCoins!\nCurrent Balance: ' + balance + ' \n> ' + emojify(number1, number2, number3));
}
else {
await bot.plugins.economy.subtract(msg.author.id, 10);