Fixing a small thing

This commit is contained in:
Vishal 2024-12-09 18:58:19 +05:30 committed by GitHub
parent cdf47179bb
commit 9db5fc0576
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -551,7 +551,7 @@ class ServerManagerApp:
print(f'{Clr.RED}Error loading config file:\n{exc}.{Clr.RST}',
flush=True)
with open(self._ba_root_path + "/mods/defaults/config.yaml", "r") as infile:
with open(self._ba_root_path + "/mods/defaults/config.toml", "r") as infile:
default_file = infile.read()
with open(self._config_path, "w") as outfile:
outfile.write(default_file)