We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1e67de commit 1c81cfbCopy full SHA for 1c81cfb
rlbot/config.py
@@ -186,7 +186,7 @@ def load_player_config(
186
187
return flat.PlayerConfiguration(
188
type,
189
- name_override or settings.get("name"),
+ name_override or settings.get("name", ""),
190
team,
191
str(root_dir),
192
run_command,
@@ -216,7 +216,7 @@ def load_script_config(path: Path | str) -> flat.ScriptConfiguration:
216
run_command = settings["run_command_linux"]
217
218
return flat.ScriptConfiguration(
219
- settings.get("name", "Unnamed"),
+ settings.get("name", ""),
220
221
222
0,
0 commit comments