MCPcopy Create free account
hub / github.com/Card-Forge/forge / addMayLookTemp

Method addMayLookTemp

forge-game/src/main/java/forge/game/card/Card.java:3809–3816  ·  view source on GitHub ↗
(final Player player)

Source from the content-addressed store, hash-verified

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)) {

Callers 1

tempShowCardMethod · 0.80

Calls 4

isFaceDownMethod · 0.95
isInZoneMethod · 0.95
updateMayLookMethod · 0.95
addMethod · 0.65

Tested by

no test coverage detected