From 78b4e5c7e87f6a2f38adfd4864780f0ac69200b7 Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Sat, 12 Jul 2025 15:35:47 -0700 Subject: [PATCH] Beta version warning --- Assets/Scripts/LoadingMenu.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Assets/Scripts/LoadingMenu.cs b/Assets/Scripts/LoadingMenu.cs index 34d19e3..9fdc27c 100644 --- a/Assets/Scripts/LoadingMenu.cs +++ b/Assets/Scripts/LoadingMenu.cs @@ -68,6 +68,11 @@ public class LoadingMenu : MonoBehaviour updateButton.gameObject.SetActive(true); continueButton.gameObject.SetActive(true); } + else if (response == "4") + { + text.text = "You are on a beta version of the game. You can still play the game and access the servers, but it is recommended to use the latest stable version."; + continueButton.gameObject.SetActive(true); + } else { text.text = "Outdated client! Please update your client to play";