fix as foretold + revelation illegal cast

This commit is contained in:
Anthony Calosa
2022-04-04 00:48:49 +00:00
parent c411476ca1
commit 493f3f25f8

View File

@@ -3324,7 +3324,8 @@ public class Card extends GameEntity implements Comparable<Card>, IHasSVars {
public final void updateMayPlay() { public final void updateMayPlay() {
PlayerCollection result = new PlayerCollection(); PlayerCollection result = new PlayerCollection();
for (CardPlayOption o : mayPlay.values()) { for (CardPlayOption o : mayPlay.values()) {
result.add(o.getPlayer()); if (o.grantsZonePermissions())
result.add(o.getPlayer());
} }
getView().setMayPlayPlayers(result); getView().setMayPlayPlayers(result);
} }