From 536aefe9511ecc87e698e641d25692904e884372 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Thu, 22 Apr 2021 09:27:10 -0500 Subject: [PATCH] Add biz delete items cmds --- scripts/server/command.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/server/command.js b/scripts/server/command.js index 04195de3..2ae76f95 100644 --- a/scripts/server/command.js +++ b/scripts/server/command.js @@ -97,6 +97,8 @@ function loadCommands() { commandData("bizexit", moveBusinessExitCommand, "", getStaffFlagValue("manageBusinesses"), true, true, "Moves the exit (interior point) of the business"), commandData("bizinttype", setBusinessInteriorTypeCommand, "", getStaffFlagValue("manageBusinesses"), true, true, "Changes the business' interior"), commandData("bizdefaultitems", giveDefaultItemsToBusinessCommand, "", getStaffFlagValue("manageBusinesses"), true, true, "Gives the business the default items based on template name"), + commandData("bizdelflooritems", deleteBusinessFloorItemsCommand, "", getStaffFlagValue("manageBusinesses"), true, true, "Destroys all items on the business floor (for-sale items)"), + commandData("bizdelstorageitems", deleteBusinessStorageItemsCommand, "", getStaffFlagValue("manageBusinesses"), true, true, "Destroys all items in the business's storage"), ], chat: [ commandData("me", meActionCommand, "", getStaffFlagValue("none"), true, false),