From 09254850d3909b6ad0ec3520611ec3692b228ead Mon Sep 17 00:00:00 2001 From: codemann8 Date: Wed, 28 Jan 2026 20:03:56 -0600 Subject: [PATCH] Fixed error with bombbag + non-shopsanity --- Fill.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Fill.py b/Fill.py index 52021036..0dd28574 100644 --- a/Fill.py +++ b/Fill.py @@ -1106,7 +1106,7 @@ def balance_money_progression(world): slot = shop_to_location_table[location.parent_region.name].index(location.name) shop = location.parent_region.shop shop_item = shop.inventory[slot] - if location.item and interesting_item(location, location.item, world, location.item.player): + if shop_item and location.item and interesting_item(location, location.item, world, location.item.player): if location.item.name.startswith('Rupee') and loc_player == location.item.player: if shop_item['price'] < rupee_chart[location.item.name]: wallet[loc_player] -= shop_item['price'] # will get picked up in the location_free block