From 4c93d4ad9419840ace6b0549b31cec281c25d660 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Tue, 13 Apr 2021 01:31:21 -0500 Subject: [PATCH] Fix wrong cmd handler func name --- scripts/server/command.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/server/command.js b/scripts/server/command.js index 0729961c..bdb4edbd 100644 --- a/scripts/server/command.js +++ b/scripts/server/command.js @@ -220,7 +220,7 @@ function loadCommands() { commandData("radio", walkieTalkieChatCommand, "", getStaffFlagValue("none"), true, false), commandData("r", walkieTalkieChatCommand, "", getStaffFlagValue("none"), true, false), - commandData("additemtype", createItemType, "", getStaffFlagValue("manageItems"), true, false), + commandData("additemtype", createItemTypeCommand, "", getStaffFlagValue("manageItems"), true, false), commandData("itemusetype", setItemTypeUseTypeCommand, " ", getStaffFlagValue("manageItems"), true, false), commandData("itemuseval", setItemTypeUseValueCommand, " ", getStaffFlagValue("manageItems"), true, false), commandData("itemorderprice", setItemTypeOrderPriceCommand, " ", getStaffFlagValue("manageItems"), true, false),