From 34d362a0030d76e024fa25e9b85b54b0f019be2c Mon Sep 17 00:00:00 2001 From: Duck <31627079+duckboycool@users.noreply.github.com> Date: Sat, 29 Nov 2025 10:47:54 -0700 Subject: [PATCH] CV64/CVCotM: Add spaces in concatenated strings (#5691) * Possible space removal * Add spaces * Missed one * Revert removals, use newline --- worlds/cv64/aesthetics.py | 2 +- worlds/cv64/rom.py | 2 +- worlds/cvcotm/rom.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/worlds/cv64/aesthetics.py b/worlds/cv64/aesthetics.py index 66709174d8..5bfe943684 100644 --- a/worlds/cv64/aesthetics.py +++ b/worlds/cv64/aesthetics.py @@ -214,7 +214,7 @@ renon_item_dialogue = { "\"Banshee Boomerang.\"", 0x10: "No weapon triangle\n" "advantages with this.", - 0x12: "It looks sus? Trust me," + 0x12: "It looks sus? Trust me,\n" "my wares are genuine.", 0x15: "This non-volatile kind\n" "is safe to handle.", diff --git a/worlds/cv64/rom.py b/worlds/cv64/rom.py index 2e56df394d..4c31dc148a 100644 --- a/worlds/cv64/rom.py +++ b/worlds/cv64/rom.py @@ -1030,7 +1030,7 @@ def get_base_rom_bytes(file_name: str = "") -> bytes: basemd5 = hashlib.md5() basemd5.update(base_rom_bytes) if CV64_US_10_HASH != basemd5.hexdigest(): - raise Exception("Supplied Base Rom does not match known MD5 for Castlevania 64 US 1.0." + raise Exception("Supplied Base Rom does not match known MD5 for Castlevania 64 US 1.0. " "Get the correct game and version, then dump it.") setattr(get_base_rom_bytes, "base_rom_bytes", base_rom_bytes) return base_rom_bytes diff --git a/worlds/cvcotm/rom.py b/worlds/cvcotm/rom.py index 350829292b..a1b41ba31d 100644 --- a/worlds/cvcotm/rom.py +++ b/worlds/cvcotm/rom.py @@ -586,7 +586,7 @@ def get_base_rom_bytes(file_name: str = "") -> bytes: basemd5.update(base_rom_bytes) # if basemd5.hexdigest() not in [CVCOTM_CT_US_HASH, CVCOTM_AC_US_HASH, CVCOTM_VC_US_HASH]: if basemd5.hexdigest() not in [CVCOTM_CT_US_HASH, CVCOTM_AC_US_HASH]: - raise Exception("Supplied Base ROM does not match known MD5s for Castlevania: Circle of the Moon USA." + raise Exception("Supplied Base ROM does not match known MD5s for Castlevania: Circle of the Moon USA. " "Get the correct game and version, then dump it.") setattr(get_base_rom_bytes, "base_rom_bytes", base_rom_bytes) return base_rom_bytes