()
| 3832 | } |
| 3833 | |
| 3834 | public final void updateMayPlay() { |
| 3835 | PlayerCollection result = new PlayerCollection(); |
| 3836 | for (CardPlayOption o : mayPlay.values()) { |
| 3837 | if (o.grantsZonePermissions()) |
| 3838 | result.add(o.getPlayer()); |
| 3839 | } |
| 3840 | getView().setMayPlayPlayers(result); |
| 3841 | } |
| 3842 | |
| 3843 | public final CardPlayOption mayPlay(final StaticAbility sta) { |
| 3844 | if (sta == null) { |
no test coverage detected