summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/StateTracking/WorldLocationsTracker.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI/Framework/StateTracking/WorldLocationsTracker.cs')
-rw-r--r--src/SMAPI/Framework/StateTracking/WorldLocationsTracker.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/SMAPI/Framework/StateTracking/WorldLocationsTracker.cs b/src/SMAPI/Framework/StateTracking/WorldLocationsTracker.cs
index 817a6011..f328d659 100644
--- a/src/SMAPI/Framework/StateTracking/WorldLocationsTracker.cs
+++ b/src/SMAPI/Framework/StateTracking/WorldLocationsTracker.cs
@@ -37,7 +37,7 @@ namespace StardewModdingAPI.Framework.StateTracking
/// <summary>Whether locations were added or removed since the last reset.</summary>
public bool IsLocationListChanged => this.Added.Any() || this.Removed.Any();
- /// <summary>Whether any tracked location data changed since the last reset.</summary>
+ /// <inheritdoc />
public bool IsChanged => this.IsLocationListChanged || this.Locations.Any(p => p.IsChanged);
/// <summary>The tracked locations.</summary>
@@ -64,7 +64,7 @@ namespace StardewModdingAPI.Framework.StateTracking
this.VolcanoLocationListWatcher = WatcherFactory.ForReferenceList(activeVolcanoLocations);
}
- /// <summary>Update the current value if needed.</summary>
+ /// <inheritdoc />
public void Update()
{
// update watchers
@@ -120,7 +120,7 @@ namespace StardewModdingAPI.Framework.StateTracking
this.VolcanoLocationListWatcher.Reset();
}
- /// <summary>Set the current value as the baseline.</summary>
+ /// <inheritdoc />
public void Reset()
{
this.ResetLocationList();
@@ -135,7 +135,7 @@ namespace StardewModdingAPI.Framework.StateTracking
return this.LocationDict.ContainsKey(location);
}
- /// <summary>Stop watching the player fields and release all references.</summary>
+ /// <inheritdoc />
public void Dispose()
{
foreach (IWatcher watcher in this.GetWatchers())