From f4adc3c3e941876dd8ab0a6bc17770d46f96446c Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Wed, 27 Jul 2022 00:43:13 -0500 Subject: [PATCH] Manually remove and re-add help cmd handler --- scripts/server/command.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/server/command.js b/scripts/server/command.js index 6975d5dd..69017fc4 100644 --- a/scripts/server/command.js +++ b/scripts/server/command.js @@ -709,6 +709,9 @@ function addAllCommandHandlers() { } } + removeCommandHandler("help"); + addCommandHandler("help", helpCommand); + logToConsole(LOG_INFO, `[VRR.Command] ${commandCount} command handlers added!`); }