From a9b4d33cd285e11fc4b680e7edc0a515a9459d44 Mon Sep 17 00:00:00 2001 From: PinkSwitch <52474902+PinkSwitch@users.noreply.github.com> Date: Sat, 5 Apr 2025 09:07:37 -0500 Subject: [PATCH] Yoshi's Island: Fix Piece of Luigi not goaling until reset (#4709) --- worlds/yoshisisland/Client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/yoshisisland/Client.py b/worlds/yoshisisland/Client.py index 9b9e0ff5..a7a234ed 100644 --- a/worlds/yoshisisland/Client.py +++ b/worlds/yoshisisland/Client.py @@ -31,7 +31,7 @@ DEATHFLAG = WRAM_START + 0x00DB DEATHLINKRECV = WRAM_START + 0x00E0 GOALFLAG = WRAM_START + 0x14B6 -VALID_GAME_STATES = [0x0F, 0x10, 0x2C] +VALID_GAME_STATES = [0x0F, 0x10, 0x2C, 0x16, 0x1D] class YoshisIslandSNIClient(SNIClient):