Fixed double receive eggs to self

This commit is contained in:
MarioSpore
2025-09-12 22:22:54 -04:00
parent d6c7a04316
commit 3dee611b51

View File

@@ -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: