Merge pull request #147 from KScl/ohko_weights

Options for amount of time given in timer modes
This commit is contained in:
Fabian Dill
2020-10-30 03:51:13 +01:00
committed by GitHub
9 changed files with 238 additions and 47 deletions

View File

@@ -72,6 +72,10 @@ def main(args, seed=None):
world.tile_shuffle = args.tile_shuffle.copy()
world.beemizer = args.beemizer.copy()
world.timer = args.timer.copy()
world.countdown_start_time = args.countdown_start_time.copy()
world.red_clock_time = args.red_clock_time.copy()
world.blue_clock_time = args.blue_clock_time.copy()
world.green_clock_time = args.green_clock_time.copy()
world.shufflepots = args.shufflepots.copy()
world.progressive = args.progressive.copy()
world.dungeon_counters = args.dungeon_counters.copy()