case sensitive commands were a thing

This commit is contained in:
2019-03-28 22:06:35 +11:00
committed by GitHub
parent 4b0bb1dba3
commit 62efd88263

View File

@@ -115,7 +115,7 @@ function doCommand(msg, prefix) {
if (!message.startsWith(prefix)) return
//Split into command + args
const command = message.substring(prefix.length).split(/[ \n]/)[0].trim()
const command = message.substring(prefix.length).split(/[ \n]/)[0].trim().toLowerCase()
msg.suffix = message.substring(prefix.length + command.length).trim()
var cmds = client.cachedcommands.filter(cmd => cmd.alias == command);
@@ -136,4 +136,4 @@ function doCommand(msg, prefix) {
delete require.cache[require.resolve('./commands/' + cmds[0].file)]
}
}
}