diff --git a/project/SPT.Custom/Utils/MenuNotificationManager.cs b/project/SPT.Custom/Utils/MenuNotificationManager.cs index bfeb1b8..450f196 100644 --- a/project/SPT.Custom/Utils/MenuNotificationManager.cs +++ b/project/SPT.Custom/Utils/MenuNotificationManager.cs @@ -15,6 +15,7 @@ namespace SPT.Custom.Utils { public class MenuNotificationManager : MonoBehaviour { + private static bool _seenBetaMessage = false; public static string sptVersion; public static string commitHash; internal static HashSet whitelistedPlugins = new() @@ -98,8 +99,15 @@ namespace SPT.Custom.Utils return; } + if (_seenBetaMessage) + { + return; + } + ShowBetaMessage(); ShowReleaseNotes(); + + _seenBetaMessage = true; } // Show the beta message