Skip to content

Commit

Permalink
Develop
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmfinol committed Dec 21, 2023
1 parent 0d0fc47 commit b200de9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 2 additions & 1 deletion Assets/Scripts/Cgs/CardGameManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,8 @@ 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 || !string.IsNullOrEmpty(Current.Error)
|| Current.Id.Equals(Tags.StandardPlayingCardsDirectoryName))
GameReady();
}
#endif
Expand Down
8 changes: 4 additions & 4 deletions ProjectSettings/ProjectSettings.asset

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions docs/pages/roadmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ permalink: roadmap.html
- Minor Bug Fixes

## Active Sprint
game creation menu copyright
game play deck positions on android
- Game-Play: Display values on Card in Play Area
- Game-Play: Contextual green button for default action based on card location
- Game-Play: Right-click for context menu
Expand Down

0 comments on commit b200de9

Please sign in to comment.