Skip to content

Commit

Permalink
Fix case
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmfinol committed Nov 14, 2023
1 parent dfb7736 commit 5ad8e33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Scripts/Cgs/CardGameManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ private IEnumerator Start()
yield return null;

Debug.Log("CardGameManager::Start:GameReady");
if (Current == null || Current == UnityCardGame.UnityInvalid || Current.Id.equals(Tags.StandardPlayingCardsDirectoryName))
if (Current == null || Current == UnityCardGame.UnityInvalid || Current.Id.Equals(Tags.StandardPlayingCardsDirectoryName))
GameReady();
}
#endif
Expand Down

0 comments on commit 5ad8e33

Please sign in to comment.