From 92b22d6749b3ffc6523c61d713c947372d536773 Mon Sep 17 00:00:00 2001 From: That-One-Nerd Date: Thu, 11 May 2023 17:13:02 -0400 Subject: [PATCH] One more tiny thing. --- SrcMod/Shell/ObjectModels/Config.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SrcMod/Shell/ObjectModels/Config.cs b/SrcMod/Shell/ObjectModels/Config.cs index fc50b46..3494028 100644 --- a/SrcMod/Shell/ObjectModels/Config.cs +++ b/SrcMod/Shell/ObjectModels/Config.cs @@ -23,7 +23,7 @@ public class Config private static Changes? p_changes; // These variables should only exist in the Config class so they aren't marked as shared. - private static string p_steamLocation; + private string p_steamLocation; static Config() { @@ -82,6 +82,7 @@ public class Config // This should never run, and is just here to supress // a couple compiler warnings. p_steamLocation = string.Empty; + GameDirectories = Array.Empty(); RunUnsafeCommands = AskMode.Ask; return; }