Set custom prices

This commit is contained in:
RedSparr0w
2019-11-23 11:05:43 +13:00
parent e0925538c7
commit b940e8e859
20 changed files with 99 additions and 51 deletions
@@ -213,8 +213,6 @@ public class ShopHandler {
public static int getStock(int shop_id, int item_id){
item_id++;
for (int j = 0; j < MaxShopItems; j++) {
if (ShopItems[shop_id][j] > 0)
System.out.println("item " + item_id + " = " + ShopItemsN[shop_id][j]);
if (ShopItems[shop_id][j] == item_id) {
return ShopItemsN[shop_id][j];
}