diff --git a/cockatrice/src/game/player/player.cpp b/cockatrice/src/game/player/player.cpp index bf1394039..17cc27a26 100644 --- a/cockatrice/src/game/player/player.cpp +++ b/cockatrice/src/game/player/player.cpp @@ -56,7 +56,9 @@ void Player::initializeZones() addZone(new PileZoneLogic(this, "sb", false, false, false, this)); addZone(new TableZoneLogic(this, "table", true, false, true, this)); addZone(new StackZoneLogic(this, "stack", true, false, true, this)); - addZone(new HandZoneLogic(this, "hand", false, false, true, this)); + bool visibleHand = playerInfo->getLocalOrJudge() || + (game->getPlayerManager()->isSpectator() && game->getGameMetaInfo()->spectatorsOmniscient()); + addZone(new HandZoneLogic(this, "hand", false, false, visibleHand, this)); } Player::~Player()