Skip to content

Commit cd7ee1c

Browse files
committed
Plando Fix for Fairy Entrances
- Check for fairy fountains in the caves pool when validating plandomized entrances
1 parent daf337c commit cd7ee1c

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

logic/EntranceShuffle.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -531,6 +531,11 @@ static EntranceShuffleError setPlandomizerEntrances(World& world, WorldPool& wor
531531
ErrorLog::getInstance().log("\"" + entrance->getOriginalName() + "\" is not an in-game entrance that can be shuffled.");
532532
return EntranceShuffleError::PLANDOMIZER_ERROR;
533533
}
534+
// Change fairies to caves since they are merged into the caves pool
535+
else if (type == EntranceType::FAIRY)
536+
{
537+
type = EntranceType::CAVE;
538+
}
534539
// Change misc restrictive to misc since restrictive entrances are still in the misc pool
535540
else if (type == EntranceType::MISC_RESTRICTIVE)
536541
{

0 commit comments

Comments
 (0)