From 374ecbffeaae709ede79c4c83b3cf554a5c5d5cf Mon Sep 17 00:00:00 2001 From: ION606 Date: Fri, 1 Jul 2022 15:13:07 +0300 Subject: [PATCH] It didn't catch my additions last time for some reason --- commands/misc/help.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/misc/help.js b/commands/misc/help.js index e8b3662..a0be1cb 100644 --- a/commands/misc/help.js +++ b/commands/misc/help.js @@ -6,13 +6,13 @@ module.exports ={ if (args[0] == 'econ') { let temp = "***Selmer Bot Commands (Econ):***\n"; 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); } 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}'game before the command!)`; + temp += `\n\n(remember to use _'${bot.prefix}game'_ before the command!)`; return message.channel.send(temp); }