From 2b505df42973f93648f221127c94b059a72ac805 Mon Sep 17 00:00:00 2001 From: aerinon Date: Thu, 4 Jan 2024 11:50:09 -0700 Subject: [PATCH] fix: typo --- ItemList.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ItemList.py b/ItemList.py index 39584262..f8cf2941 100644 --- a/ItemList.py +++ b/ItemList.py @@ -1179,7 +1179,7 @@ def make_custom_item_pool(world, player, progressive, shuffle, difficulty, timer pool.extend(['Nothing'] * nothings) start_inventory = [x for x in world.precollected_items if x.player == player] - if world.logic[player] in ['owglitches', 'hybridglitches', 'nologic'] and all(x.name !=' Pegasus Boots' for x in start_inventory): + if world.logic[player] in ['owglitches', 'hybridglitches', 'nologic'] and all(x.name != 'Pegasus Boots' for x in start_inventory): precollected_items.append('Pegasus Boots') if 'Pegasus Boots' in pool: pool.remove('Pegasus Boots')