From 0a41b7b751a5d0acf287b842b92bf03a59250470 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Sun, 7 Mar 2021 22:49:00 +0100 Subject: [PATCH] allow additional rupees to refer to their world --- Shops.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Shops.py b/Shops.py index 9c6d1b57..4272524b 100644 --- a/Shops.py +++ b/Shops.py @@ -298,6 +298,7 @@ def create_shops(world, player: int): else: loc.item = ItemFactory(GetBeemizerItem(world, player, 'Nothing'), player) loc.shop_slot_disabled = True + loc.item.world = world shop.region.locations.append(loc) world.dynamic_locations.append(loc) world.clear_location_cache()