Fix: Reconnection during Slot Choice

This commit is contained in:
rubenpirreram
2026-05-09 12:46:39 +02:00
parent 9335db7db0
commit 0e477d48d1
@@ -72,6 +72,11 @@ public class Game implements Serializable {
return false;
}
disconnetedPlayers.put(player,false);
if(currentState.getGameStage().equals(GameStages.SLOT_CHOICE))
{
disconnetedPlayers.remove(player);
orderLogicCard.pushNoEffect(player);
}
return true;
}
/**