From 713aaf1e1f2173573faa1aa2b7f6dbdc053f42ea Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Fri, 23 Mar 2018 01:21:33 -0400 Subject: [PATCH] Fix a typo in take-any code --- ItemList.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ItemList.py b/ItemList.py index daa60d31..eb1766b5 100644 --- a/ItemList.py +++ b/ItemList.py @@ -319,7 +319,7 @@ def set_up_take_anys(world): entrance = world.get_region(reg).entrances[0] connect_entrance(world, entrance, take_any) entrance.target = target - take_any.shop = Shop(old_man_take_any, room_id, ShopType.TakeAny, 0xE3, True) + take_any.shop = Shop(take_any, room_id, ShopType.TakeAny, 0xE3, True) world.shops.append(take_any.shop) take_any.shop.active = True take_any.shop.add_inventory(0, 'Blue Potion', 0, 1)