fix shop prices (#114)

round shop prices
This commit is contained in:
Danial
2019-10-28 07:21:02 +13:00
committed by Daniel Ginovker
parent 8262512bf6
commit 01199f1d58
@@ -130,7 +130,7 @@ public class ShopAssistant {
} else if (Type == 1) {
TotPrice *= 1;
}
return TotPrice;
return (int) Math.round(TotPrice);
}
public int getItemShopValue(int itemId) {