Improve game over conditions

This commit is contained in:
2023-09-03 15:57:21 -07:00
parent 23f20f08e0
commit c8d0eefd7e
3 changed files with 43 additions and 3 deletions

View File

@@ -14,7 +14,7 @@ public partial class StageGUI : Control
public void OnCharacterSelect()
{
if (_gameManager.P1GameOver)
if (_gameManager.IsP1GameOver)
return;
var wheel1 = GetNode<TextureRect>("CharacterSelect/Wheel");