Fixed check for ongoing mash game.

This commit is contained in:
ThePendulum 2021-11-08 02:50:47 +01:00
parent 8ac844ecde
commit e65bc352f2
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ function onCommand(args, context) {
return;
}
if (!word || !mash) {
if (!word && !mash) {
context.sendMessage(`Start a mash with ${config.prefix}mash {length}`, context.room.id);
return;
}