Fix: CurrentState Now Correctly Initialises player And slot

This commit is contained in:
GabrieleRadice
2026-03-22 18:25:14 +01:00
parent c8084ce469
commit 47faa24561
@@ -48,9 +48,9 @@ public class CurrentState {
// End setters
// Constructors
private CurrentState(Player player, Slot slot){
this.player = player;
this.slot = slot;
private CurrentState(){
this.player = null;
this.slot = null;
this.NUpper = 0;
this.NLower = 0;
this.GameStage = GameStages.WAITING;