limit check to hand

This commit is contained in:
Anthony Calosa
2022-04-01 15:00:41 +00:00
parent 467c51cadd
commit 36aff0cf6c

View File

@@ -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;