Skip to content

Commit

Permalink
fix guest login button enable
Browse files Browse the repository at this point in the history
  • Loading branch information
eugene-doobu committed Sep 28, 2024
1 parent 76ca82f commit 986ce85
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions nekoyume/Assets/_Scripts/Game/Game.cs
Original file line number Diff line number Diff line change
Expand Up @@ -421,9 +421,10 @@ private void OnLoadCommandlineOptions()
}
}

if (Widget.TryFind<IntroScreen>(out var introscreen))
var introScreen = FindObjectOfType<IntroScreen>();
if (introScreen != null)
{
introscreen.GetGuestPrivateKey();
introScreen.GetGuestPrivateKey();
}

NcDebug.Log("[Game] CommandLineOptions loaded");
Expand Down

0 comments on commit 986ce85

Please sign in to comment.