- LifeSetAi: Do not use this ability in case the amount the life is set to is the same as the AI's current life (e.g. Oketra's Last Mercy while the AI is already at the starting 20 life).

This commit is contained in:
Agetian
2017-08-30 16:52:20 +00:00
parent 87dc72b874
commit beb73828e0

View File

@@ -94,7 +94,7 @@ public class LifeSetAi extends SpellAbilityAi {
}
}
}
if (amount < myLife) {
if (amount <= myLife) {
return false;
}
}