From 36aff0cf6cda31e47b13496eaaabb08a6a38f7ba Mon Sep 17 00:00:00 2001 From: Anthony Calosa Date: Fri, 1 Apr 2022 15:00:41 +0000 Subject: [PATCH] limit check to hand --- .../src/forge/screens/match/views/VCardDisplayArea.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forge-gui-mobile/src/forge/screens/match/views/VCardDisplayArea.java b/forge-gui-mobile/src/forge/screens/match/views/VCardDisplayArea.java index f704c9ae727..c68577802a6 100644 --- a/forge-gui-mobile/src/forge/screens/match/views/VCardDisplayArea.java +++ b/forge-gui-mobile/src/forge/screens/match/views/VCardDisplayArea.java @@ -366,7 +366,7 @@ public abstract class VCardDisplayArea extends VDisplayArea implements ActivateH } public boolean selectCard(boolean selectEntireStack) { - if (!getCard().getController().equals(MatchController.instance.getCurrentPlayer()) && !ZoneType.Battlefield.equals(getCard().getZone())) { + if (!getCard().getController().equals(MatchController.instance.getCurrentPlayer()) && !ZoneType.Hand.equals(getCard().getZone())) { if (getCard().mayPlayerLook(MatchController.instance.getCurrentPlayer())) { // can see the card, check if can play... if (!getCard().getMayPlayPlayers(MatchController.instance.getCurrentPlayer())) return false;