Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
PoryGone committed Feb 11, 2024
1 parent 7599c25 commit 0e94a15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/smw/Client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down

0 comments on commit 0e94a15

Please sign in to comment.