From 1f71067e1cee05f38c807e041c72e2b42cf74c75 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Fri, 6 Mar 2020 00:54:13 +0100 Subject: [PATCH] rename to bmbp "Berserker Multiworld Binary Patch", which seems to be unique. --- Patch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Patch.py b/Patch.py index 9bf37645..94646c70 100644 --- a/Patch.py +++ b/Patch.py @@ -31,7 +31,7 @@ def create_patch_file(rom_file_to_patch: str, server: str = "") -> str: bytes = generate_patch(load_bytes(rom_file_to_patch), { "server": server}) # allow immediate connection to server in multiworld. Empty string otherwise - target = os.path.splitext(rom_file_to_patch)[0] + ".bbp" + target = os.path.splitext(rom_file_to_patch)[0] + ".bmbp" write_lzma(bytes, target) return target