How is this still in the game lol

This commit is contained in:
2026-01-24 11:16:46 -07:00
parent b25d870279
commit d0a9c29c20

View File

@@ -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;
}
}