Also apply spectacle rock cave fix to insanity mode

This commit is contained in:
LLCoolDave 2017-05-22 22:00:26 +02:00
parent c82f325748
commit 32b9606535
1 changed files with 2 additions and 1 deletions

View File

@ -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