mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 03:08:02 +00:00
- Reduced the life threshold for healing self with Torgaar.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user