From d0a9c29c205cf0f388031e569eb28d03e0b06ea8 Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Sat, 24 Jan 2026 11:16:46 -0700 Subject: [PATCH] How is this still in the game lol --- Assets/Scripts/ChatroomMenu.cs | 6 ------ 1 file changed, 6 deletions(-) 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