(final Player player)
| 3807 | } |
| 3808 | |
| 3809 | public final void addMayLookTemp(final Player player) { |
| 3810 | if (mayLookTemp.add(player)) { |
| 3811 | if (isFaceDown() && isInZone(ZoneType.Exile)) { |
| 3812 | mayLookFaceDownExile.add(player); |
| 3813 | } |
| 3814 | updateMayLook(); |
| 3815 | } |
| 3816 | } |
| 3817 | |
| 3818 | public final void removeMayLookTemp(final Player player) { |
| 3819 | if (mayLookTemp.remove(player)) { |
no test coverage detected