Fix so cards revealed from hidden zones don't remain visible in those zones afterward

This commit is contained in:
drdev
2014-10-18 00:18:46 +00:00
parent 5b600bf592
commit df378e7a13

View File

@@ -176,6 +176,7 @@ public class PlayerControllerHuman extends PlayerController {
}
private void tempShowCard(Card c) {
if (c == null) { return; }
tempShownCards.add(c);
c.setMayLookAt(player, true, true);
}
private void tempShowCards(Iterable<Card> cards) {