Merge pull request #3655 from Quezler/patch-70

display the repair field healed effect at the healed unit(s)
This commit is contained in:
Anuken
2020-11-29 13:59:57 -05:00
committed by GitHub

View File

@@ -30,7 +30,7 @@ public class RepairFieldAbility extends Ability{
Units.nearby(unit.team, unit.x, unit.y, range, other -> {
if(other.damaged()){
healEffect.at(unit);
healEffect.at(other);
wasHealed = true;
}
other.heal(amount);