aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/commands/mod/kick.js
diff options
context:
space:
mode:
authorMinusGix <MinusGix@gmail.com>2020-03-06 22:17:43 +0100
committerMinusGix <MinusGix@gmail.com>2020-03-06 22:17:43 +0100
commit8987cca8484ebb5d8ac3214acbfdab630cf2f29d (patch)
tree26e2750748b82c29080ca5a2c27b875e3c8bd65c /server/src/commands/mod/kick.js
parentMinor UAC tweaks (diff)
downloadhackchat-8987cca8484ebb5d8ac3214acbfdab630cf2f29d.tar.gz
hackchat-8987cca8484ebb5d8ac3214acbfdab630cf2f29d.zip
Reword actions which are restricted on using against users of same level
Diffstat (limited to 'server/src/commands/mod/kick.js')
-rw-r--r--server/src/commands/mod/kick.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/commands/mod/kick.js b/server/src/commands/mod/kick.js
index ec5696b..35fd2df 100644
--- a/server/src/commands/mod/kick.js
+++ b/server/src/commands/mod/kick.js
@@ -41,7 +41,7 @@ export async function run(core, server, socket, data) {
if (badClients[i].level >= socket.level) {
server.reply({
cmd: 'warn',
- text: 'Cannot kick other mods, how rude',
+ text: 'Cannot kick other users with the same level, how rude',
}, socket);
} else {
kicked.push(badClients[i]);