rename to bmbp "Berserker Multiworld Binary Patch", which seems to be unique.

This commit is contained in:
Fabian Dill 2020-03-06 00:54:13 +01:00
parent d44acfdaaf
commit 1f71067e1c
1 changed files with 1 additions and 1 deletions

View File

@ -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