From 3310f96fc210e3cf0586ca52eb312f0fefbbfb66 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Thu, 21 Jan 2021 04:37:38 -0600 Subject: [PATCH] Add bizbalance/biztill cmd --- scripts/server/command.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/server/command.js b/scripts/server/command.js index cf4d2526..c067d89e 100644 --- a/scripts/server/command.js +++ b/scripts/server/command.js @@ -66,6 +66,7 @@ function loadCommands() { commandData("bizlock", lockBusinessCommand, "", getStaffFlagValue("none"), true, true, "Locks a business"), commandData("bizfee", setBusinessEntranceFeeCommand, "", getStaffFlagValue("none"), true, true, "Sets a fee to charge players when they enter the business."), commandData("biztill", viewBusinessTillAmountCommand, "", getStaffFlagValue("none"), true, true, "Shows the business's till (cash register) amount"), + commandData("bizbalance", viewBusinessTillAmountCommand, "", getStaffFlagValue("none"), true, true, "Shows the business's till (cash register) amount"), commandData("bizwithdraw", withdrawFromBusinessCommand, "", getStaffFlagValue("none"), true, true, "Take money out of the business till (cash register)"), commandData("bizdeposit", depositIntoBusinessCommand, "", getStaffFlagValue("none"), true, true, "Put money into the business till (cash register)"), commandData("buy", buyFromBusinessCommand, " [amount]", getStaffFlagValue("none"), true, true, "Buy items from a business"),