From 72de30826c725dd2ba64306b62ab0b016a60a506 Mon Sep 17 00:00:00 2001 From: cassidoxa Date: Mon, 14 Aug 2023 14:26:16 -0400 Subject: [PATCH] Fix item counter HUD for completionist --- Rom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rom.py b/Rom.py index baf9a3cb..e8478931 100644 --- a/Rom.py +++ b/Rom.py @@ -1035,7 +1035,7 @@ def patch_rom(world, player, rom): # write total item count and item counter hud mode item_total = len(world.get_filled_locations()) - 18 # minus non-item locations rom.write_int16(0x180196, item_total+1) - if world.item_counter_hud[player] and world.goal not in ['triforcehunt', 'ganonhunt']: + if world.goal not in ['triforcehunt', 'ganonhunt'] and (world.item_counter_hud[player] or world.goal in ['completionist']): rom.write_byte(0x180039, 0x01) else: rom.write_byte(0x180039, 0x00)