From 9a5c2ed8e1eb4a2bd6ba1609ccc3cb5c216bf668 Mon Sep 17 00:00:00 2001 From: jamesbrq Date: Sun, 11 Aug 2024 02:11:01 -0400 Subject: [PATCH] Update seed verification to be more likely to make a correct comparison --- worlds/mlss/Client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/mlss/Client.py b/worlds/mlss/Client.py index a951d33466f8..75f6ac653003 100644 --- a/worlds/mlss/Client.py +++ b/worlds/mlss/Client.py @@ -85,7 +85,7 @@ async def game_watcher(self, ctx: "BizHawkClientContext") -> None: if not self.seed_verify: seed = await bizhawk.read(ctx.bizhawk_ctx, [(0xDF00A0, len(ctx.seed_name), "ROM")]) seed = seed[0].decode("UTF-8") - if seed != ctx.seed_name: + if seed not in ctx.seed_name: logger.info( "ERROR: The ROM you loaded is for a different game of AP. " "Please make sure the host has sent you the correct patch file,"