diff --git a/Source/Game/Console/ConfigParser.cs b/Source/Game/Console/ConfigParser.cs index b77d99d..adabebb 100644 --- a/Source/Game/Console/ConfigParser.cs +++ b/Source/Game/Console/ConfigParser.cs @@ -12,6 +12,8 @@ namespace Game public static Config ParseFile(string path) { Config config = new Config(); + if (!File.Exists(path)) + return config; using FileStream file = File.OpenRead(path); using StreamReader sr = new StreamReader(file);