aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/commands/core/morestats.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/commands/core/morestats.js')
-rw-r--r--server/src/commands/core/morestats.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/commands/core/morestats.js b/server/src/commands/core/morestats.js
index 3cbf8f3..3b5ceb2 100644
--- a/server/src/commands/core/morestats.js
+++ b/server/src/commands/core/morestats.js
@@ -26,7 +26,7 @@ export async function run(core, server, socket) {
let ips = {};
let channels = {};
// for (const client of server.clients) {
- this.clients.forEach((client) => {
+ server.clients.forEach((client) => {
if (client.channel) {
channels[client.channel] = true;
ips[client.address] = true;
@@ -59,7 +59,7 @@ export async function run(core, server, socket) {
// module hook functions
export function initHooks(server) {
- server.registerHook('in', 'chat', this.statsCheck, 26);
+ server.registerHook('in', 'chat', this.statsCheck.bind(this), 26);
}
// hooks chat commands checking for /stats