diff --git a/Modules/Commands.js b/Modules/Commands.js index fc2b73d..6060ab0 100644 --- a/Modules/Commands.js +++ b/Modules/Commands.js @@ -36,6 +36,9 @@ function runCmd(command, inMemory, fromInput) { window.open(url, '_blank'); } else if (commandName === "truthordare") { truthOrDare(); + } else if (commandName.includes("whatis:")) { + const data = commandName.trim().replace(/^whatis:\b\s*/i, ''); + whatIsCommand(data); } else if (commandName === "rolldice") { rollDice(); } else if (commandName === "headsortails") {