From cb8a9189bbc737a86d67181ba16dc2e32c2ec521 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Sat, 27 Mar 2021 06:02:19 -0500 Subject: [PATCH] Remove bizitem msg (will auto show items on buy cmd --- scripts/server/business.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/server/business.js b/scripts/server/business.js index 0b97341b..d36f6666 100644 --- a/scripts/server/business.js +++ b/scripts/server/business.js @@ -1172,13 +1172,11 @@ function buyFromBusinessCommand(command, params, client) { if(typeof getBusinessData(businessId).floorItemCache[itemSlot] == "undefined") { messagePlayerError(client, `Item slot ${itemSlot} doesn't exist!`); - messagePlayerTip(client, `Use /bizitems to see what the business has for sale.`); return false; } if(getBusinessData(businessId).floorItemCache[itemSlot] == -1) { messagePlayerError(client, `Item slot ${itemSlot} slot is empty!`); - messagePlayerTip(client, `Use /bizitems to see what the business has for sale.`); return false; }