Ready for the first beta release. #105

Merged
That-One-Nerd merged 41 commits from main-canary into main 2023-05-18 13:05:42 -04:00
Showing only changes of commit 92b22d6749 - Show all commits

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;
} }