group chat bugfixes
This commit is contained in:
parent
e0b0df1fcc
commit
02bb7fdcdc
@ -24,7 +24,7 @@ function runCommand(input) {
|
|||||||
renameToSelf();
|
renameToSelf();
|
||||||
return "";
|
return "";
|
||||||
case "chat":
|
case "chat":
|
||||||
groupMessage(modeSplit[1], input);
|
groupMessage(modeSplit[1].split(','), input);
|
||||||
renameToSelf();
|
renameToSelf();
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
@ -243,5 +243,5 @@ function cmd_chat(input) {
|
|||||||
let output = canChatCheck(input);
|
let output = canChatCheck(input);
|
||||||
if (output !== "") return output;
|
if (output !== "") return output;
|
||||||
messagingIniti('chat', input[0]);
|
messagingIniti('chat', input[0]);
|
||||||
sendChatInit(input[0]);
|
sendChatInit(input[0].split(','));
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user