From 829846568a88ca3949f11a87fb075bbb0f7cace2 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Sat, 9 Apr 2022 20:14:36 -0500 Subject: [PATCH] Remove NPC info command from list until finished --- 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 929aa37b..4111a21d 100644 --- a/scripts/server/command.js +++ b/scripts/server/command.js @@ -388,7 +388,7 @@ function loadCommands() { npc: [ new CommandData("addnpc", createNPCCommand, "", getStaffFlagValue("ManageNPCs"), true, false, "Creates an NPC with the specified skin"), new CommandData("delnpc", deleteNPCCommand, "", getStaffFlagValue("ManageNPCs"), true, false, "Deletes the nearest NPC"), - new CommandData("npcinfo", getNPCInfoCommand, "", getStaffFlagValue("ManageNPCs"), true, false, "Shows info about the nearest NPC"), + //new CommandData("npcinfo", getNPCInfoCommand, "", getStaffFlagValue("ManageNPCs"), true, false, "Shows info about the nearest NPC"), new CommandData("npcanim", setNPCAnimationCommand, "", getStaffFlagValue("ManageNPCs"), true, false, "Plays the specified animation on the nearest NPC"), //new CommandData("npcrespawnall", respawnAllNPCsCommand, "", getStaffFlagValue("ManageNPCs"), true, false, "Respawns all NPCs"), //new CommandData("npcrespawn", respawnNPCCommand, "", getStaffFlagValue("ManageNPCs"), true, false, "Respawns the nearest NPC"),