Skip to content

Commit c2ecc07

Browse files
authored
Merge pull request #138 from gymnast86/main
Fix path location calculation edge case
2 parents 20acc81 + 156089e commit c2ecc07

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

logic/Hints.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ static HintError calculatePossiblePathLocations(WorldPool& worlds)
4242

4343
for (auto& [name, location] : world.locationTable)
4444
{
45-
if (!location->progression)
45+
if (!location->progression && !location->categories.contains(LocationCategory::BlueChuChu))
4646
{
4747
nonRequiredLocations.insert({location.get(), location->currentItem});
4848
location->currentItem = {GameItem::INVALID, location->world};

0 commit comments

Comments
 (0)