Skip to content

Commit

Permalink
Fix error in debug shortcut
Browse files Browse the repository at this point in the history
  • Loading branch information
Rivixer committed Jun 13, 2023
1 parent 25783b7 commit 0c1b90f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WZIMopoly/Scenes/GameScene.cs
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ public override void Update()
{
PlayerStatus.BeforeRollingDice => PlayerStatus.AfterRollingDice,
PlayerStatus.AfterRollingDice => PlayerStatus.BeforeRollingDice,
_ => throw new InvalidOperationException("Invalid player status."),
_ => GameSettings.CurrentPlayer.PlayerStatus,
};
GameSettings.SendGameData(Model);
}
Expand Down

0 comments on commit 0c1b90f

Please sign in to comment.