Added:(Network) Totem Choice first implementation

This commit is contained in:
rubenpirreram
2026-05-13 16:55:12 +02:00
parent 0f92696cbd
commit 110526d836
13 changed files with 58 additions and 25 deletions
@@ -50,7 +50,7 @@ public class Game implements Serializable {
private Queue<Player> totemChoiceQueue = new LinkedList<>();
//TODO
private boolean TotemChoice(Player player,Totems totem) {
public boolean TotemChoice(Player player,Totems totem) {
if(!currentState.getGameStage().equals(GameStages.TOTEM_CHOICE))
return false;
if(!getCurrentState().getCurrentPlayer().equals(player))