aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/commands/mod/ban.js
diff options
context:
space:
mode:
authormarzavec <admin@marzavec.com>2020-03-06 22:21:27 +0100
committerGitHub <noreply@github.com>2020-03-06 22:21:27 +0100
commitd784de1bb87a6013bd2f4353e6786af278ce0ff7 (patch)
treeddbe406d7c51e1f121fe16d91857c22e4fec4f4c /server/src/commands/mod/ban.js
parentComments fix (diff)
parentReword actions which are restricted on using against users of same level (diff)
downloadhackchat-d784de1bb87a6013bd2f4353e6786af278ce0ff7.tar.gz
hackchat-d784de1bb87a6013bd2f4353e6786af278ce0ff7.zip
Merge pull request #91 from MinusGix/levelRewording
Reword actions which are restricted on using against users of same level
Diffstat (limited to 'server/src/commands/mod/ban.js')
-rw-r--r--server/src/commands/mod/ban.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/commands/mod/ban.js b/server/src/commands/mod/ban.js
index abc02d7..e110e78 100644
--- a/server/src/commands/mod/ban.js
+++ b/server/src/commands/mod/ban.js
@@ -33,7 +33,7 @@ export async function run(core, server, socket, data) {
if (badClient.level >= socket.level) {
return server.reply({
cmd: 'warn',
- text: 'Cannot ban other mods, how rude',
+ text: 'Cannot ban other users of the same level, how rude',
}, socket);
}