Pull in OR 0.7.0.1 #2

Merged
karafruit merged 54 commits from codemann_OverworldShuffle into beta 2026-01-26 04:19:24 +00:00
Showing only changes of commit 43c34f4494 - Show all commits

4
Rom.py
View File

@@ -1264,8 +1264,8 @@ def patch_rom(world, rom, player, team, is_mystery=False, rom_header=None):
else:
goal_bytes += int16_as_bytes(req['target'])
elif req['condition'] & 0x80 == 0:
if req['condition'] & 0x7F == 0x06 or req['condition'] & 0x7F == 0x07:
# agahnims have no target value
if req['condition'] & 0x7F in [0x00, 0x06, 0x07]:
# no target value
pass
elif req['condition'] & 0x7F < 0x08:
goal_bytes += [req['target']]