We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f5dd2e commit 0784434Copy full SHA for 0784434
RLBotCS/ManagerTools/ConfigValidator.cs
@@ -43,6 +43,10 @@ public static bool Validate(MatchConfigurationT config)
43
config.LauncherArg = "";
44
}
45
46
+
47
+ config.Mutators ??= new();
48
+ config.PlayerConfigurations ??= new();
49
+ config.ScriptConfigurations ??= new();
50
51
valid = ValidatePlayers(ctx, config.PlayerConfigurations) && valid;
52
valid = ValidateScripts(ctx, config.ScriptConfigurations) && valid;
0 commit comments