Adapted changes to pre-set overworld flags to new initial sram system

This commit is contained in:
codemann8
2022-07-08 12:25:54 -05:00
parent aec7b7077d
commit 92bc88bd41

View File

@@ -53,7 +53,7 @@ class InitialSram:
def pre_open_pyramid_hole(self): def pre_open_pyramid_hole(self):
self._or_value(OVERWORLD_DATA+0x5B, 0x20) self._or_value(OVERWORLD_DATA+0x5B, 0x20)
def pre_set_overworld_flag(self, owid, bitmask) def pre_set_overworld_flag(self, owid, bitmask):
self._or_value(OVERWORLD_DATA+owid, bitmask) self._or_value(OVERWORLD_DATA+owid, bitmask)
def set_starting_equipment(self, world: object, player: int): def set_starting_equipment(self, world: object, player: int):