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