mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-15 02:08:00 +00:00
- 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:
@@ -94,7 +94,7 @@ public class LifeSetAi extends SpellAbilityAi {
|
||||
}
|
||||
}
|
||||
}
|
||||
if (amount < myLife) {
|
||||
if (amount <= myLife) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user