1
0
mirror of https://github.com/hack-chat/main.git synced 2024-03-22 13:20:33 +08:00

Merge pull request #91 from MinusGix/levelRewording

Reword actions which are restricted on using against users of same level
This commit is contained in:
marzavec 2020-03-06 15:21:27 -06:00 committed by GitHub
commit d784de1bb8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -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);
}

View File

@ -40,7 +40,7 @@ export async function run(core, server, socket, data) {
if (badClient.level >= socket.level) {
return server.reply({
cmd: 'warn',
text: 'This trick wont work on mods and admin',
text: 'This trick wont work on users of the same level',
}, socket);
}

View File

@ -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]);

View File

@ -35,7 +35,7 @@ export async function run(core, server, socket, data) {
if (badClient.level >= socket.level) {
return server.reply({
cmd: 'warn',
text: 'Cannot move other mods, how rude',
text: 'Cannot move other users of the same level, how rude',
}, socket);
}