Ignore empty support directory overrides.
This commit is contained in:
@@ -23,7 +23,7 @@ namespace OpenRA.Server
|
||||
{
|
||||
var arguments = new Arguments(args);
|
||||
var supportDirArg = arguments.GetValue("Engine.SupportDir", null);
|
||||
if (supportDirArg != null)
|
||||
if (!string.IsNullOrEmpty(supportDirArg))
|
||||
Platform.OverrideSupportDir(supportDirArg);
|
||||
|
||||
Log.AddChannel("debug", "dedicated-debug.log", true);
|
||||
|
||||
Reference in New Issue
Block a user