From 32b96065359707b3be47df1149d269670ac37af2 Mon Sep 17 00:00:00 2001 From: LLCoolDave Date: Mon, 22 May 2017 22:00:26 +0200 Subject: [PATCH] Also apply spectacle rock cave fix to insanity mode --- EntranceShuffle.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/EntranceShuffle.py b/EntranceShuffle.py index 208e5365..578754d7 100644 --- a/EntranceShuffle.py +++ b/EntranceShuffle.py @@ -558,7 +558,8 @@ def link_entrances(world): for cave in cavelist: if isinstance(cave, tuple) and len(cave) > 1: # special handling: TRock has two entries that we should consider entrance only - if cave[0] == 'Turtle Rock Exit (Front)' and len(cave) == 2: + # ToDo this should be handled in a more sensible manner + if cave[0] in ['Turtle Rock Exit (Front)', 'Spectacle Rock Cave Exit (Peak)'] and len(cave) == 2: continue candidate = cave break