mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 10:48:00 +00:00
- Fixed bug with extra targets when activating Polukranos, World Eater
This commit is contained in:
@@ -276,8 +276,8 @@ public class DamageDealAi extends DamageAiBase {
|
||||
if (!source.hasProtectionFrom(humanCreature)) {
|
||||
dmgTaken += humanCreature.getNetAttack();
|
||||
}
|
||||
if (dmg <= 0) {
|
||||
break;
|
||||
if (dmg == 0) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
if (dmg > 0 && lastTgt != null) {
|
||||
|
||||
Reference in New Issue
Block a user