From ca1eb82ce1bb829946d5878468d8f324b84d2dd2 Mon Sep 17 00:00:00 2001 From: MarioSpore Date: Sat, 25 Oct 2025 18:20:49 -0400 Subject: [PATCH] Forgot to uncomment binary set for goal_checker --- worlds/grinch/Client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/worlds/grinch/Client.py b/worlds/grinch/Client.py index 35550fcf..9d18c498 100644 --- a/worlds/grinch/Client.py +++ b/worlds/grinch/Client.py @@ -240,8 +240,8 @@ class GrinchClient(BizHawkClient): goal_ram_address = goal_loc.update_ram_addr[0] current_ram_address_value = int.from_bytes((await bizhawk.read(ctx.bizhawk_ctx, [( goal_ram_address.ram_address, goal_ram_address.bit_size, "MainRAM")]))[0], "little") - # if (current_ram_address_value & (1 << goal_ram_address.binary_bit_pos)) > 0: - if current_ram_address_value == goal_ram_address.value: + if (current_ram_address_value & (1 << goal_ram_address.binary_bit_pos)) > 0: + # if current_ram_address_value == goal_ram_address.value: ctx.finished_game = True await ctx.send_msgs([{ "cmd": "StatusUpdate",