From 3dee611b510d7b8fe40fa1196db66e2ff96556f2 Mon Sep 17 00:00:00 2001 From: MarioSpore Date: Fri, 12 Sep 2025 22:22:54 -0400 Subject: [PATCH] Fixed double receive eggs to self --- worlds/grinch/Client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/grinch/Client.py b/worlds/grinch/Client.py index ed316e13..91fbcf2c 100644 --- a/worlds/grinch/Client.py +++ b/worlds/grinch/Client.py @@ -105,7 +105,7 @@ class GrinchClient(BizHawkClient): if "tags" not in args: return - if "RingLink" in ctx.tags and "RingLink" in args["tags"] and args["data"]["source"] != ctx.player_names[ctx.slot]: + if "RingLink" in ctx.tags and "RingLink" in args["tags"] and args["data"]["source"] != ctx.slot: Utils.async_start(self.ring_link_input(args["data"]["amount"], ctx), "SyncEggs") async def set_auth(self, ctx: "BizHawkClientContext") -> None: