It didn't catch my additions last time for some reason

This commit is contained in:
ION606
2022-07-01 15:13:07 +03:00
parent d8ca1d5055
commit 374ecbffea
+2 -2
View File
@@ -6,13 +6,13 @@ module.exports ={
if (args[0] == 'econ') { if (args[0] == 'econ') {
let temp = "***Selmer Bot Commands (Econ):***\n"; let temp = "***Selmer Bot Commands (Econ):***\n";
temp += bot.commands.get('econ').econHelp(); temp += bot.commands.get('econ').econHelp();
temp += `\n\n(remember to use '${bot.prefix}' before the command!)`; temp += `\n\n(remember to use _'${bot.prefix}'_ before the command!)`;
return message.channel.send(temp); return message.channel.send(temp);
} }
else if (args[0] == 'game') { else if (args[0] == 'game') {
let temp = "***Selmer Bot Commands (Games):***\n"; let temp = "***Selmer Bot Commands (Games):***\n";
temp += bot.commands.get('game').allGames.join(", "); temp += bot.commands.get('game').allGames.join(", ");
temp += `\n\n(remember to use '${bot.prefix}'game before the command!)`; temp += `\n\n(remember to use _'${bot.prefix}game'_ before the command!)`;
return message.channel.send(temp); return message.channel.send(temp);
} }