- Fixed Devour in Shadow / Veteran Armorer bug.

This commit is contained in:
jendave
2011-08-06 03:45:11 +00:00
parent a4d9a829ef
commit a96c743c69

View File

@@ -4218,10 +4218,9 @@ public class CardFactory implements NewConstants {
public void resolve() { public void resolve() {
if(AllZone.GameAction.isCardInPlay(getTargetCard()) if(AllZone.GameAction.isCardInPlay(getTargetCard())
&& CardFactoryUtil.canTarget(card, getTargetCard())) { && CardFactoryUtil.canTarget(card, getTargetCard())) {
AllZone.GameAction.destroyNoRegeneration(getTargetCard()); PlayerLife life = AllZone.GameAction.getPlayerLife(card.getController());
PlayerLife life = AllZone.GameAction.getPlayerLife(card.getController());
life.subtractLife(getTargetCard().getNetDefense()); life.subtractLife(getTargetCard().getNetDefense());
AllZone.GameAction.destroyNoRegeneration(getTargetCard());
} }
}//resolve() }//resolve()
}; };