Fix swordless

This commit is contained in:
cassidoxa
2022-04-20 22:10:02 -04:00
parent 163988ca1b
commit 16dfb2ad7b

View File

@@ -217,8 +217,8 @@ class InitialSram:
self._initial_sram_bytes[0x46E] = self._initial_sram_bytes[0x35B] self._initial_sram_bytes[0x46E] = self._initial_sram_bytes[0x35B]
if world.swords[player] == "swordless": if world.swords[player] == "swordless":
self.__initial_sram_bytes[0x359] = 0xFF self._initial_sram_bytes[0x359] = 0xFF
self.__initial_sram_bytes[0x417] = 0x00 self._initial_sram_bytes[0x417] = 0x00
def set_starting_rupees(self, rupees: int): def set_starting_rupees(self, rupees: int):
if not (-1 < rupees < 10000): if not (-1 < rupees < 10000):