From 9733da9f4404f0b928a2e5cb75a97cf94e894626 Mon Sep 17 00:00:00 2001 From: Kara Alexandra Date: Sat, 24 Jan 2026 21:59:11 -0600 Subject: [PATCH] Always include team number in rom name --- Rom.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Rom.py b/Rom.py index 81484e10..618ed43e 100644 --- a/Rom.py +++ b/Rom.py @@ -1860,8 +1860,6 @@ def patch_rom(world, rom, player, team, is_mystery=False, rom_header=None): if world.players > 1 and world.teams > 1 and len(rom_header) <= 12: rom.name = bytearray(f"GK_{rom_header}_{team + 1}_{player}", 'utf8') - elif world.players > 1 and len(rom_header) <= 15: - rom.name = bytearray(f"GK_{rom_header}_{player}", 'utf8') elif len(rom_header) <= 18: rom.name = bytearray(f"GK_{rom_header}", 'utf8') else: @@ -1869,8 +1867,6 @@ def patch_rom(world, rom, player, team, is_mystery=False, rom_header=None): else: if world.players > 1 and world.teams > 1: rom.name = bytearray(f'GK_{world.seed}_{team + 1}_{player}', 'utf8') - elif world.players > 1: - rom.name = bytearray(f'GK_{world.seed}_{player}', 'utf8') else: rom.name = bytearray(f'GK_{world.seed}', 'utf8')