Implemented Verity Circle

This commit is contained in:
Evan Kranzler 2019-01-04 20:58:02 -05:00
parent a0a77a4b65
commit fd709bcd28
5 changed files with 84 additions and 2 deletions

View file

@ -275,7 +275,7 @@ public class Combat implements Serializable, Copyable<Combat> {
Permanent attackingPermanent = game.getPermanent(attacker);
if (attackingPermanent != null) {
attackingPermanent.setTapped(false);
attackingPermanent.tap(game); // to tap with event finally here is needed to prevent abusing of Vampire Envoy like cards
attackingPermanent.tap(true,game); // to tap with event finally here is needed to prevent abusing of Vampire Envoy like cards
}
}
handleBanding(attacker, game);