From 9352067d696fba251eb63e1cec7147997636cfdc Mon Sep 17 00:00:00 2001 From: KrisDavie Date: Tue, 14 Feb 2023 11:35:00 +0100 Subject: [PATCH] Fix swamp smalls in pottery to get out of swamp --- ItemList.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ItemList.py b/ItemList.py index 5bfe04d5..39584262 100644 --- a/ItemList.py +++ b/ItemList.py @@ -287,6 +287,11 @@ def generate_itempool(world, player): for _ in range(0, amt): pool.append('Rupees (20)') + if world.logic[player] == 'hybridglitches' and world.pottery[player] not in ['none', 'cave']: + # In HMG force swamp smalls in pots to allow getting out of swamp palace + placed_items['Swamp Palace - Trench 1 Pot Key'] = 'Small Key (Swamp Palace)' + placed_items['Swamp Palace - Pot Row Pot Key'] = 'Small Key (Swamp Palace)' + start_inventory = list(world.precollected_items) for item in precollected_items: world.push_precollected(ItemFactory(item, player))