Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public bool ExecuteCheck(TrackerBase tracker, AutoTrackerZeldaState currentState
if (location is { Cleared: false, HasMarkedCorrectItem: false })
{
tracker.LocationTracker.MarkLocation(location, location.ItemType.GetGenericType(), autoTracked: true);
tracker.GameStateTracker.UpdateLastMarkedLocations([]);
tracker.GameStateTracker.UpdateLastMarkedLocations([location]);
}
}
// Viewed Ether Tablet text
Expand All @@ -103,7 +103,7 @@ public bool ExecuteCheck(TrackerBase tracker, AutoTrackerZeldaState currentState
if (location is { Cleared: false, HasMarkedCorrectItem: false })
{
tracker.LocationTracker.MarkLocation(location, location.ItemType.GetGenericType(), autoTracked: true);
tracker.GameStateTracker.UpdateLastMarkedLocations([]);
tracker.GameStateTracker.UpdateLastMarkedLocations([location]);
}
}
// Viewed Ped text
Expand All @@ -115,7 +115,7 @@ public bool ExecuteCheck(TrackerBase tracker, AutoTrackerZeldaState currentState
if (location is { Cleared: false, HasMarkedCorrectItem: false })
{
tracker.LocationTracker.MarkLocation(location, location.ItemType.GetGenericType(), autoTracked: true);
tracker.GameStateTracker.UpdateLastMarkedLocations([]);
tracker.GameStateTracker.UpdateLastMarkedLocations([location]);
}
}
// Talked to Bottle merchant
Expand Down
Loading