From 9a6380d594feca1da9b9171049cca373e50dbb94 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Tue, 23 Jun 2020 05:45:44 +0200 Subject: [PATCH] fix no_logic crash --- Rules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rules.py b/Rules.py index 110caaf4..fbcc82df 100644 --- a/Rules.py +++ b/Rules.py @@ -164,7 +164,7 @@ def crossover_logic(world, player): if location.player in no_logic_players: for item in progression_items: forbid_item(location, item, player) - for item in item_name_groups["Small Keys"]: + for item in item_name_groups["Small Keys"] - {"Small Key (Universal)"}: forbid_item(location, item, player) for item in item_name_groups["Big Keys"]: forbid_item(location, item, player)