diff options
author | marzavec <admin@marzavec.com> | 2020-03-06 18:00:30 +0100 |
---|---|---|
committer | marzavec <admin@marzavec.com> | 2020-03-06 18:00:30 +0100 |
commit | da9cbe3dbb799b7b668c895367c7d3778f1d0e16 (patch) | |
tree | 026aebaf1c24e82043c658d29afc8cc9b0bce121 /server/src/commands/core | |
parent | Merge pull request #89 from MinusGix/nul_initial2 (diff) | |
download | hackchat-da9cbe3dbb799b7b668c895367c7d3778f1d0e16.tar.gz hackchat-da9cbe3dbb799b7b668c895367c7d3778f1d0e16.zip |
Minor UAC tweaks
Added an underscore to the uac info lib which prevents the server from attempting to use the file as a command module, allowing removal of the 'info' property and empty 'run' command
Diffstat (limited to 'server/src/commands/core')
-rw-r--r-- | server/src/commands/core/chat.js | 4 | ||||
-rw-r--r-- | server/src/commands/core/join.js | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/server/src/commands/core/chat.js b/server/src/commands/core/chat.js index 01ee256..908c205 100644 --- a/server/src/commands/core/chat.js +++ b/server/src/commands/core/chat.js @@ -2,7 +2,7 @@ Description: Rebroadcasts any `text` to all clients in a `channel` */ -import * as UAC from "../utility/UAC/info"; +import * as UAC from '../utility/UAC/_info'; // module support functions const parseText = (text) => { @@ -45,7 +45,7 @@ export async function run(core, server, socket, data) { cmd: 'chat', nick: socket.nick, text, - level: socket.level + level: socket.level, }; if (UAC.isAdmin(socket.level)) { diff --git a/server/src/commands/core/join.js b/server/src/commands/core/join.js index eccac6e..3a59a6d 100644 --- a/server/src/commands/core/join.js +++ b/server/src/commands/core/join.js @@ -2,7 +2,7 @@ Description: Initial entry point, applies `channel` and `nick` to the calling socket */ -import * as UAC from "../utility/UAC/info"; +import * as UAC from '../utility/UAC/_info'; // module support functions const crypto = require('crypto'); @@ -22,7 +22,7 @@ export function parseNickname(core, data) { nick: '', uType: 'user', trip: null, - level: UAC.levels.user, + level: UAC.levels.default, }; // seperate nick from password |