diff --git a/Assets/Scripts/ChatroomMenu.cs b/Assets/Scripts/ChatroomMenu.cs index 034a2d6..a3eb1d3 100644 --- a/Assets/Scripts/ChatroomMenu.cs +++ b/Assets/Scripts/ChatroomMenu.cs @@ -28,7 +28,6 @@ public class ChatroomMenu : MonoBehaviour private Coroutine refreshLoopRoutine; private bool shouldScrollToBottom = true; [SerializeField] private Button downButton; - private bool isPaused; [SerializeField] private ProfileMenu profilePrefab; [SerializeField] private GameObject optionsPanel; @@ -571,9 +570,4 @@ public class ChatroomMenu : MonoBehaviour optionsPanelReportButton.transform.parent.gameObject.SetActive(localUserId != 0 && message.UserID != localUserId); optionsPanel.SetActive(true); } - - void OnApplicationPause(bool pause) - { - isPaused = pause; - } } \ No newline at end of file