From 6cb05f18ca6917e97aa11c1210c90581f9d6cc30 Mon Sep 17 00:00:00 2001 From: codemann8 Date: Wed, 29 Oct 2025 14:07:21 -0500 Subject: [PATCH] Changed vital/useful hints to logic hints --- Rom.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rom.py b/Rom.py index 9a43f813..8b5f595c 100644 --- a/Rom.py +++ b/Rom.py @@ -2394,13 +2394,13 @@ def write_strings(rom, world, player, team): for name, district in world.districts[player].items(): hint_type = 'foolish' choices = [] - item_count, item_type = 0, 'useful' + item_count, item_type = 0, 'logic' for loc_name in district.locations: location_item = world.get_location(loc_name, player).item if location_item.advancement: if 'Heart Container' in location_item.name or location_item.compass or location_item.map: continue - itm_type = 'useful' if useful_item_for_hint(location_item, world) else 'vital' + itm_type = 'logic' hint_type = 'path' if item_type == itm_type: choices.append(location_item)