Generate: Add skip progression balancing argument. (#1876)

This commit is contained in:
Zach Parks
2023-06-26 16:14:01 -05:00
committed by GitHub
parent 1698c17caa
commit 71bfb6babd
2 changed files with 8 additions and 3 deletions

View File

@@ -285,8 +285,10 @@ def main(args, seed=None, baked_server_options: Optional[Dict[str, object]] = No
AutoWorld.call_all(world, 'post_fill')
if world.players > 1:
if world.players > 1 and not args.skip_prog_balancing:
balance_multiworld_progression(world)
else:
logger.info("Progression balancing skipped.")
logger.info(f'Beginning output...')