diff --git a/Assets/Scripts/LoadingMenu.cs b/Assets/Scripts/LoadingMenu.cs index 045803c..6a9638f 100644 --- a/Assets/Scripts/LoadingMenu.cs +++ b/Assets/Scripts/LoadingMenu.cs @@ -89,6 +89,17 @@ public class LoadingMenu : MonoBehaviour await SceneManager.LoadSceneAsync("MainMenu"); } else if (response == "2") + { + text.text = "Outdated client! You can still play the game and access the servers, but it isn't recommended."; + + var updateButtonPos = updateButton.transform.localPosition; + updateButtonPos.x = -135; + updateButton.transform.localPosition = updateButtonPos; + + updateButton.gameObject.SetActive(true); + continueButton.gameObject.SetActive(true); + } + else if (response == "3") { text.text = "Outdated client! You can still load into the game, but online features may not be available.";