- Missing file

This commit is contained in:
swordshine
2014-02-26 11:28:30 +00:00
parent a20686d9cd
commit 0f51e5944c

View File

@@ -7381,17 +7381,6 @@ public class Card extends GameEntity implements Comparable<Card> {
restDamage = stAb.applyAbility("PreventDamage", source, this, restDamage, isCombat, isTest); restDamage = stAb.applyAbility("PreventDamage", source, this, restDamage, isCombat, isTest);
} }
} }
// specific Cards
if (this.isCreature()) { // and not a planeswalker
if (source.isCreature() && getGame().isCardInPlay("Well-Laid Plans")
&& source.sharesColorWith(this)) {
return 0;
}
} // Creature end
return restDamage > 0 ? restDamage : 0; return restDamage > 0 ? restDamage : 0;
} }