From a464fee64bdea04613f14d66fa98a0db7f6451f5 Mon Sep 17 00:00:00 2001 From: cassidoxa Date: Wed, 20 Apr 2022 22:10:51 -0400 Subject: [PATCH] Fix Swordless --- InitialSram.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/InitialSram.py b/InitialSram.py index 717c674d..07e6afe9 100644 --- a/InitialSram.py +++ b/InitialSram.py @@ -211,8 +211,8 @@ class InitialSram: self._initial_sram_bytes[0x46E] = self._initial_sram_bytes[0x35B] if world.swords[player] == "swordless": - self.__initial_sram_bytes[0x359] = 0xFF - self.__initial_sram_bytes[0x417] = 0x00 + self._initial_sram_bytes[0x359] = 0xFF + self._initial_sram_bytes[0x417] = 0x00 def set_starting_rupees(self, rupees: int): if not (-1 < rupees < 10000):