Commit b600be81 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Implement /muteall.

parent 63e2b5a4
......@@ -2032,6 +2032,14 @@ commands.mute = {
f: userMessage,
};
commands.muteall = {
description: 'mute all remote users',
predicate: operatorPredicate,
f: (c, r) => {
serverConnection.userMessage('mute', null, null, true);
}
}
commands.warn = {
parameters: 'user message',
description: 'send a warning to a user',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment