Fixed the 'help game' command

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