From 4aaef4dfa2158a87a6133074f3816b51976974fc Mon Sep 17 00:00:00 2001 From: Supositware Date: Tue, 5 Mar 2019 20:56:30 +0100 Subject: [PATCH] remove problematic toLowerCase() --- commands/admin/autoresponse.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/admin/autoresponse.js b/commands/admin/autoresponse.js index 6552e461..6042963a 100644 --- a/commands/admin/autoresponse.js +++ b/commands/admin/autoresponse.js @@ -27,8 +27,8 @@ class autoresponseCommand extends Command { } async exec(message, args) { - let text = args.text.toLowerCase(); - let all = args.all.toLowerCase(); + let text = args.text; + let all = args.all; if (text.toLowerCase() == 'enable' || text.toLowerCase() == 'disable') { let autoresponse = {};