forked from SteamWar/SteamWar
Migrate builder and bau worlds to shared world records
- add SQL-backed world entities with archive and rename support - route builder, bau, deploy, and GDPR flows through world storage - keep legacy folder support for existing worlds
This commit is contained in:
@@ -37,7 +37,7 @@ if __name__ == "__main__":
|
||||
with open(configfile, 'r') as file:
|
||||
gamemode = yaml.load(file)
|
||||
|
||||
builderworld = path.expanduser(f'/worlds/builder{version}/{worldname}')
|
||||
builderworld = sys.argv[4] if len(sys.argv) > 4 else path.expanduser(f'/worlds/builder{version}/{worldname}')
|
||||
arenaworld = f'/servers/{gamemode["Server"]["Folder"]}/arenas/{worldname}'
|
||||
|
||||
if path.exists(arenaworld):
|
||||
|
||||
Reference in New Issue
Block a user