From 24d8da3810be47a83148a6f7b31ba23150166bb4 Mon Sep 17 00:00:00 2001 From: codemann8 Date: Thu, 8 Jan 2026 16:19:43 -0600 Subject: [PATCH] Disallow money balancing to apply to locked and event items --- Fill.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Fill.py b/Fill.py index c47a2f3d..43915406 100644 --- a/Fill.py +++ b/Fill.py @@ -1054,6 +1054,8 @@ def balance_money_progression(world): return [loc for loc in locations if sphere_state.can_reach(loc) and sphere_state.not_flooding_a_key(sphere_state.world, loc)] def interesting_item(location, item, world, player): + if location.event or location.locked: + return True if item.advancement: return True if item.type is not None or item.name.startswith('Rupee'):