diff --git a/Assets/Scripts/GameManager.cs b/Assets/Scripts/GameManager.cs index 2ecf8f9..3d6ccc6 100644 --- a/Assets/Scripts/GameManager.cs +++ b/Assets/Scripts/GameManager.cs @@ -349,8 +349,9 @@ private void OnRoomUpdate(object sender, ValueChangedEventArgs e) } case (int)GameState.MakeVote: { - if (TakePicture.activeInHierarchy) + if (TakePicture.activeInHierarchy || WaitingOtherPlayers.activeInHierarchy) { + WaitingOtherPlayers.SetActive(false); TakePicture.SetActive(false); VotePicture.SetActive(true); myOnlineRoom.Child("currentQuestionId").ValueChanged += OnCurrentQuestionChanged;