Compare commits

...

2 Commits

Author SHA1 Message Date
ThePendulum 867354978d 1.4.4 2021-11-08 02:50:50 +01:00
ThePendulum e65bc352f2 Fixed check for ongoing mash game. 2021-11-08 02:50:47 +01:00
3 changed files with 4 additions and 4 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "schat2-clive",
"version": "1.4.3",
"version": "1.4.4",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "schat2-clive",
"version": "1.4.3",
"version": "1.4.4",
"license": "ISC",
"dependencies": {
"bhttp": "^1.2.8",

View File

@ -1,6 +1,6 @@
{
"name": "schat2-clive",
"version": "1.4.3",
"version": "1.4.4",
"description": "Game host for SChat 2-powered chat sites",
"main": "src/app.js",
"scripts": {

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;
}