Removed 0-500 changed to 0-10000

This commit is contained in:
Teriuihi 2022-02-22 22:37:18 +01:00
parent 67b9c2c8ba
commit 66439802de

View File

@ -3198,8 +3198,8 @@ public class GriefPrevention extends JavaPlugin
portalReturnTaskMap.put(player.getUniqueId(), task);
}
private static final double[] xMult = {0, 500, 10000, 50000, 300000, 1000000, Integer.MAX_VALUE};
private static final double[] yMultBuy = {0.25, 0.5, 0.75, 1, 2, 5};
private static final double[] xMult = {0, 10000, 50000, 300000, 1000000, Integer.MAX_VALUE};
private static final double[] yMultBuy = {0.5, 0.75, 1, 2, 5};
private double claimBlockCost(int oldPoints, int transPts) {
if (Config.claimBlockPrices.isEmpty())
return transPts * GriefPrevention.instance.config_economy_claimBlocksPurchaseCost;