mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-05-04 12:53:30 -07:00
MMBN3: Add spaces in concatenated string#5689
This commit is contained in:
@@ -241,8 +241,8 @@ async def gba_sync_task(ctx: MMBN3Context):
|
||||
await ctx.server_auth(False)
|
||||
else:
|
||||
if not ctx.version_warning:
|
||||
logger.warning(f"Your Lua script is version {reported_version}, expected {script_version}."
|
||||
"Please update to the latest version."
|
||||
logger.warning(f"Your Lua script is version {reported_version}, expected {script_version}. "
|
||||
"Please update to the latest version. "
|
||||
"Your connection to the Archipelago server will not be accepted.")
|
||||
ctx.version_warning = True
|
||||
except asyncio.TimeoutError:
|
||||
|
||||
@@ -341,7 +341,7 @@ def get_base_rom_bytes(file_name: str = "") -> bytes:
|
||||
basemd5 = hashlib.md5()
|
||||
basemd5.update(base_rom_bytes)
|
||||
if CHECKSUM_BLUE != basemd5.hexdigest():
|
||||
raise Exception('Supplied Base Rom does not match US GBA Blue Version.'
|
||||
raise Exception('Supplied Base Rom does not match US GBA Blue Version. '
|
||||
'Please provide the correct ROM version')
|
||||
|
||||
get_base_rom_bytes.base_rom_bytes = base_rom_bytes
|
||||
|
||||
Reference in New Issue
Block a user