mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 20:58:03 +00:00
Excess damage fix
This commit is contained in:
@@ -181,7 +181,7 @@ public class CharmAi extends SpellAbilityAi {
|
||||
} else if (ai.canGainLife() && aiLife <= 5) {
|
||||
// critical Life try to gain more
|
||||
chosenList.add(gain);
|
||||
} else if (!ai.canGainLife() && aiLife == 14 ) {
|
||||
} else if (!ai.canGainLife() && aiLife == 14) {
|
||||
// ai cant gain life, but try to avoid falling to 13
|
||||
// but if a opponent does control Tainted Remedy its irrelevant
|
||||
chosenList.add(oppTainted ? lose : gain);
|
||||
|
||||
Reference in New Issue
Block a user