From 50737bc0d9c1ae806610e76be013eeddca1bf102 Mon Sep 17 00:00:00 2001 From: MinusGix Date: Thu, 5 Mar 2020 10:49:25 -0600 Subject: Move most uses of uType filtering to use UAC levels --- server/src/commands/mod/speak.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'server/src/commands/mod/speak.js') diff --git a/server/src/commands/mod/speak.js b/server/src/commands/mod/speak.js index 5514545..48d38c6 100644 --- a/server/src/commands/mod/speak.js +++ b/server/src/commands/mod/speak.js @@ -3,6 +3,8 @@ * Author: simple */ +import * as UAC from "../utility/UAC/info"; + // module constructor export function init(core) { if (typeof core.muzzledHashes === 'undefined') { @@ -13,7 +15,7 @@ export function init(core) { // module main export async function run(core, server, socket, data) { // increase rate limit chance and ignore if not admin or mod - if (socket.uType === 'user') { + if (!UAC.isModerator(socket.level)) { return server.police.frisk(socket.address, 10); } @@ -39,7 +41,7 @@ export async function run(core, server, socket, data) { server.broadcast({ cmd: 'info', text: `${socket.nick} unmuzzled : ${target}`, - }, { uType: 'mod' }); + }, { level: UAC.isModerator }); return true; } -- cgit v1.2.1