redraw batllefield right after a right click when a creture was removed from battle

This commit is contained in:
Maxmtg
2013-04-22 08:39:08 +00:00
parent a1440ed244
commit a0968bc747

View File

@@ -106,6 +106,7 @@ public class InputAttack extends InputBase {
final List<Card> att = game.getCombat().getAttackers();
if (isMetaDown && att.contains(card) && !card.hasKeyword("CARDNAME attacks each turn if able.")) {
game.getCombat().removeFromCombat(card);
player.getZone(ZoneType.Battlefield).updateObservers();
CombatUtil.showCombat(game);
return;
}