mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-01 19:46:42 +01:00
Fixed earth pony ability costing too much
This commit is contained in:
parent
e177f74c8f
commit
55f187ef6b
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ public class EarthPonyGrowAbility implements Ability<Pos> {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (count > 0) {
|
if (count > 0) {
|
||||||
player.subtractEnergyCost(count * 5);
|
player.subtractEnergyCost(count / 5D);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue