From 514ad69f4405242c2fe466fbc504bc35122a161d Mon Sep 17 00:00:00 2001 From: jamesbrq Date: Tue, 21 May 2024 14:57:59 -0400 Subject: [PATCH] Remove logging from validate_rom (#3362) --- worlds/mlss/Client.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/worlds/mlss/Client.py b/worlds/mlss/Client.py index a1cd43af..1f08b856 100644 --- a/worlds/mlss/Client.py +++ b/worlds/mlss/Client.py @@ -48,10 +48,6 @@ class MLSSClient(BizHawkClient): rom_name_bytes = await bizhawk.read(ctx.bizhawk_ctx, [(0xA0, 14, "ROM")]) rom_name = bytes([byte for byte in rom_name_bytes[0] if byte != 0]).decode("UTF-8") if not rom_name.startswith("MARIO&LUIGIUA8"): - logger.info( - "ERROR: You have opened a game that is not Mario & Luigi Superstar Saga. " - "Please make sure you are opening the correct ROM." - ) return False except UnicodeDecodeError: return False