From 7027c90da44b6eab255117e6a6d56e114f559edc Mon Sep 17 00:00:00 2001 From: Astoria Floyd Date: Fri, 6 Aug 2021 18:44:06 -0500 Subject: [PATCH] helpme instead of ThemHelp --- bot.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.lua b/bot.lua index 29528aa..47ea10a 100644 --- a/bot.lua +++ b/bot.lua @@ -22,7 +22,7 @@ client:on('messageCreate', function(message) end) client:on('messageCreate', function(message) - if tools.messageDectection(message, "ThemHelp") == true then + if tools.messageDectection(message, "helpme") == true then message.channel:send(tools.printFile("docs/help")) end end)