diff --git a/Assets/Scripts/GameManager.cs b/Assets/Scripts/GameManager.cs index 43ab768..09831c7 100644 --- a/Assets/Scripts/GameManager.cs +++ b/Assets/Scripts/GameManager.cs @@ -321,11 +321,10 @@ private void OnRoomUpdate(object sender, ValueChangedEventArgs e) } case (int)GameState.WaitingForOtherPlayersToJoin: { - if (!HomeConnection.activeInHierarchy) - { - CheckIfIAmTheFirst(myRoom.GetPlayerList()); - UpdateDisplayedListUser(myRoom.GetPlayerList()); - } + + CheckIfIAmTheFirst(myRoom.GetPlayerList()); + UpdateDisplayedListUser(myRoom.GetPlayerList()); + break; } case (int)GameState.Explanation: @@ -336,7 +335,7 @@ private void OnRoomUpdate(object sender, ValueChangedEventArgs e) } WaitingRoom.SetActive(false); BeforeStart.SetActive(true); - endOfExplanationDate = DateTime.Now.AddSeconds(3); + endOfExplanationDate = DateTime.Now.AddSeconds(4); break; }