diff --git a/js/commands.js b/js/commands.js index c41ea42..5dcfc1d 100644 --- a/js/commands.js +++ b/js/commands.js @@ -5,14 +5,14 @@ function runCommand(input) { return ""; // Exit current level - const modeSplit = chatMode.split(' ')[0]; - if (input.toLowerCase().startsWith("exit") && modeSplit !== "default") { + const modeSplit = chatMode.split(' '); + if (input.toLowerCase().startsWith("exit") && modeSplit[0] !== "default") { cmd_exit(); return ""; } // Handle different chat modes - switch (modeSplit) { + switch (modeSplit[0]) { case "msg": directMessage(modeSplit[1], input); renameToSelf();