From 512a02ba88678cb7ddd65f32245135c8cf2ba1c3 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 8 Feb 2017 11:20:02 -0500 Subject: Mind my language... We finally fixed the god damn fucking fuckity fucking Tutorial bug. Finally, for fucks sake. --- ShiftOS_TheReturn/Shiftorium.cs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'ShiftOS_TheReturn/Shiftorium.cs') diff --git a/ShiftOS_TheReturn/Shiftorium.cs b/ShiftOS_TheReturn/Shiftorium.cs index 1b09818..06a189f 100644 --- a/ShiftOS_TheReturn/Shiftorium.cs +++ b/ShiftOS_TheReturn/Shiftorium.cs @@ -122,11 +122,14 @@ namespace ShiftOS.Engine return true; } + public static bool IsInitiated { get; private set; } public static void Init() { - try + if (IsInitiated == false) { + IsInitiated = true; + //Let the crash handler deal with this one... var dict = GetDefaults(); foreach (var itm in dict) { @@ -136,9 +139,7 @@ namespace ShiftOS.Engine } } } - catch - { - } + } public static int GetCPValue(string id) -- cgit v1.2.3