make hints, credit text, and chaos thieves determistic. (no longer random based on the order the roms are written.)

This commit is contained in:
caitsith2
2020-07-15 23:01:29 -07:00
parent fe2c743480
commit 3c6893d4a8
2 changed files with 38 additions and 37 deletions

View File

@@ -77,7 +77,7 @@ def main(args, seed=None):
world.triforce_pieces_required = args.triforce_pieces_required.copy()
world.progression_balancing = {player: not balance for player, balance in args.skip_progression_balancing.items()}
world.rom_seeds = {player: world.random.randint(0, 999999999) for player in range(1, world.players + 1)}
world.rom_seeds = {player: random.Random(world.random.randint(0, 999999999)) for player in range(1, world.players + 1)}
logger.info('ALttP Berserker\'s Multiworld Version %s - Seed: %s\n', __version__, world.seed)