Add aga_randomness to exposed settings

This commit is contained in:
Cody Bailey
2023-11-19 17:32:45 -05:00
parent 94d05df72b
commit a2c4be4c4c
7 changed files with 12 additions and 3 deletions

2
Rom.py
View File

@@ -1118,7 +1118,7 @@ def patch_rom(world, rom, player, team, is_mystery=False):
rom.initial_sram.pre_open_ganons_tower()
rom.write_byte(0xF5D73, 0xF0) # bees are catchable
rom.write_byte(0xF5F10, 0xF0) # bees are catchable
rom.write_byte(0x180086, 0x00 if world.aga_randomness else 0x01) # set blue ball and ganon warp randomness
rom.write_byte(0x180086, 0x00 if world.aga_randomness[player] else 0x01) # set blue ball and ganon warp randomness
rom.write_byte(0x1800A0, 0x01) # return to light world on s+q without mirror
rom.write_byte(0x1800A1, 0x01) # enable overworld screen transition draining for water level inside swamp
rom.write_byte(0x180174, 0x01 if world.fix_fake_world[player] else 0x00)