One more tiny thing.

This commit is contained in:
That-One-Nerd 2023-05-11 17:13:02 -04:00
parent 45e23b9924
commit 92b22d6749

View File

@ -23,7 +23,7 @@ public class Config
private static Changes? p_changes; private static Changes? p_changes;
// These variables should only exist in the Config class so they aren't marked as shared. // 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() static Config()
{ {
@ -82,6 +82,7 @@ public class Config
// This should never run, and is just here to supress // This should never run, and is just here to supress
// a couple compiler warnings. // a couple compiler warnings.
p_steamLocation = string.Empty; p_steamLocation = string.Empty;
GameDirectories = Array.Empty<string>();
RunUnsafeCommands = AskMode.Ask; RunUnsafeCommands = AskMode.Ask;
return; return;
} }