- Reduced the life threshold for healing self with Torgaar.

This commit is contained in:
Agetian
2018-04-18 17:14:55 +03:00
parent 4b61620538
commit dcacdf65ce

View File

@@ -176,7 +176,7 @@ public class LifeSetAi extends SpellAbilityAi {
return false;
}
} else {
if (aiAmount > ai.getLife() && aiLife <= 10) {
if (aiAmount > ai.getLife() && aiLife < 5) {
sa.getTargets().add(ai);
} else if (oppLife > oppAmount) {
sa.getTargets().add(opponent);