Bug fix for vanilla BK at Ball n Chain guard
Bug fix for camera unlock Bug fix for bad pseudo layer at PoD Map Balcony Minor fix for non-retro key hud info
This commit is contained in:
10
Rom.py
10
Rom.py
@@ -22,7 +22,7 @@ from EntranceShuffle import door_addresses, exit_ids
|
||||
|
||||
|
||||
JAP10HASH = '03a63945398191337e896e5771f77173'
|
||||
RANDOMIZERBASEHASH = '890bac9433ffda07aeeb858cfdb41e4a'
|
||||
RANDOMIZERBASEHASH = '796d527e1a2ebbcac4023f6b8b9444bf'
|
||||
|
||||
|
||||
class JsonRom(object):
|
||||
@@ -1328,7 +1328,13 @@ def patch_rom(world, rom, player, team, enemized):
|
||||
|
||||
# set correct flag for hera basement item
|
||||
hera_basement = world.get_location('Tower of Hera - Basement Cage', player)
|
||||
if hera_basement.item is not None and hera_basement.item.name == 'Small Key (Tower of Hera)' and hera_basement.item.player == player:
|
||||
is_small_key_this_dungeon = False
|
||||
if hera_basement.item is not None and hera_basement.item.smallkey:
|
||||
item_dungeon = hera_basement.item.name.split('(')[1][:-1]
|
||||
if item_dungeon == 'Escape':
|
||||
item_dungeon = 'Hyrule Castle'
|
||||
is_small_key_this_dungeon = hera_basement.dungeon.name == item_dungeon
|
||||
if is_small_key_this_dungeon:
|
||||
rom.write_byte(0x4E3BB, 0xE4)
|
||||
else:
|
||||
rom.write_byte(0x4E3BB, 0xEB)
|
||||
|
||||
Reference in New Issue
Block a user