aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/commands/admin/shout.js
diff options
context:
space:
mode:
authorMinusGix <MinusGix@gmail.com>2020-03-05 17:49:25 +0100
committerMinusGix <MinusGix@gmail.com>2020-03-05 17:49:25 +0100
commit50737bc0d9c1ae806610e76be013eeddca1bf102 (patch)
treedaf36b87a9863a798d201242d0bbc68d39cda56d /server/src/commands/admin/shout.js
parentMake join apply UAC levels to sockets and userInfo (diff)
downloadhackchat-50737bc0d9c1ae806610e76be013eeddca1bf102.tar.gz
hackchat-50737bc0d9c1ae806610e76be013eeddca1bf102.zip
Move most uses of uType filtering to use UAC levels
Diffstat (limited to 'server/src/commands/admin/shout.js')
-rw-r--r--server/src/commands/admin/shout.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/server/src/commands/admin/shout.js b/server/src/commands/admin/shout.js
index 73b0734..ee81e58 100644
--- a/server/src/commands/admin/shout.js
+++ b/server/src/commands/admin/shout.js
@@ -2,10 +2,12 @@
Description: Emmits a server-wide message as `info`
*/
+import * as UAC from "../utility/UAC/info";
+
// module main
export async function run(core, server, socket, data) {
// increase rate limit chance and ignore if not admin
- if (socket.uType !== 'admin') {
+ if (!UAC.isAdmin(socket.level)) {
return server.police.frisk(socket.address, 20);
}