Fixed earth pony ability costing too much

This commit is contained in:
Sollace 2020-09-27 21:23:13 +02:00
parent e177f74c8f
commit 55f187ef6b

View file

@ -55,7 +55,7 @@ public class EarthPonyGrowAbility implements Ability<Pos> {
} }
if (count > 0) { if (count > 0) {
player.subtractEnergyCost(count * 5); player.subtractEnergyCost(count / 5D);
} }
} }