diff options
author | OpSimple <35542206+OpSimple@users.noreply.github.com> | 2018-06-01 00:09:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-01 00:09:12 +0200 |
commit | fd7fd230502a3289bd987f2f4e614f2ad8211016 (patch) | |
tree | 4f91093a125c85abcf1e3a6862b5531b045cf9f9 /server/src | |
parent | Update DOCUMENTATION.md (diff) | |
download | hackchat-fd7fd230502a3289bd987f2f4e614f2ad8211016.tar.gz hackchat-fd7fd230502a3289bd987f2f4e614f2ad8211016.zip |
Added an extra option to add allies
Added an extra option to add allies who can see the dumb user's texts
Diffstat (limited to 'server/src')
-rw-r--r-- | server/src/commands/mod/dumb.js | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/server/src/commands/mod/dumb.js b/server/src/commands/mod/dumb.js index 19d9b68..de0fe11 100644 --- a/server/src/commands/mod/dumb.js +++ b/server/src/commands/mod/dumb.js @@ -40,7 +40,13 @@ exports.run = async (core, server, socket, data) => { return; } - core.muzzledHashes[badClient.hash] = true; + let record = core.muzzledHashes[badClient.hash] = { + dumb:true + } + + if(data.allies && data.allies.constructor === Array){ + record.allies = data.allies; + } server.broadcast({ cmd: 'info', @@ -53,6 +59,6 @@ exports.requiredData = ['nick']; exports.info = { name: 'dumb', - usage: 'dumb {nick}', + usage: 'dumb {nick} [allies...]', description: 'Cleanly disable a user messages and make him dumb' }; |