From 0e94a159b51fb63a28ffe409217df3840c871fa4 Mon Sep 17 00:00:00 2001 From: PoryGone Date: Sun, 11 Feb 2024 00:38:39 -0500 Subject: [PATCH] Fix typo --- worlds/smw/Client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/smw/Client.py b/worlds/smw/Client.py index ca3e262582bf..3b10aa9140c0 100644 --- a/worlds/smw/Client.py +++ b/worlds/smw/Client.py @@ -263,7 +263,7 @@ async def handle_trap_queue(self, ctx): if active_boss[0] != 0x00: return - if ctx.receive_option == 1 or (ctx.receive_option == 2 and ((next_trap.flags & 1) != 0)) or (ctx.receive_option == 3 and ((item.flags & 1) != 0 and item.item != 0xBC0002)): + if ctx.receive_option == 1 or (ctx.receive_option == 2 and ((next_trap.flags & 1) != 0)) or (ctx.receive_option == 3 and ((next_trap.flags & 1) != 0 and next_trap.item != 0xBC0002)): self.add_message_to_queue(message)