From d855773d614b9c29b3c7ec23b75f95caa9198288 Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Wed, 11 Feb 2026 17:50:23 -0700 Subject: [PATCH] Make custom mode level 5 or higher --- Assets/Scripts/PlayMenu.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Assets/Scripts/PlayMenu.cs b/Assets/Scripts/PlayMenu.cs index 3e00c7b..aa5e536 100644 --- a/Assets/Scripts/PlayMenu.cs +++ b/Assets/Scripts/PlayMenu.cs @@ -213,6 +213,12 @@ public class PlayMenu : MonoBehaviour { if (DiscordRPCHandler.Instance != null) DiscordRPCHandler.Instance.UpdateRPC("Picking what mode they want to play", ""); + + if (Tools.GetLevelInfo().level < 5) + { + customButton.interactable = false; + customButton.transform.GetChild(0).GetComponent().text += "\nYou need level 5 or higher to access this"; + } } void ValidateTotal()