aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/commands/mod
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/commands/mod')
-rw-r--r--server/src/commands/mod/ban.js1
-rw-r--r--server/src/commands/mod/kick.js2
2 files changed, 1 insertions, 2 deletions
diff --git a/server/src/commands/mod/ban.js b/server/src/commands/mod/ban.js
index 19f297a..409217a 100644
--- a/server/src/commands/mod/ban.js
+++ b/server/src/commands/mod/ban.js
@@ -37,7 +37,6 @@ exports.run = async (core, server, socket, data) => {
return;
}
- // TODO unban by hash
let clientHash = server.getSocketHash(badClient);
server._police.arrest(badClient.remoteAddress, clientHash);
diff --git a/server/src/commands/mod/kick.js b/server/src/commands/mod/kick.js
index f51d576..1958ef3 100644
--- a/server/src/commands/mod/kick.js
+++ b/server/src/commands/mod/kick.js
@@ -52,7 +52,7 @@ exports.run = async (core, server, socket, data) => {
server.broadcast({
cmd: 'info',
text: `Kicked ${targetNick}`
- }, { channel: socket.channel });
+ }, { channel: socket.channel, uType: 'user' });
// inform mods with where they were sent
server.broadcast({