diff --git a/StardewArchipelago/Locations/LocationNameMatcher.cs b/StardewArchipelago/Locations/LocationNameMatcher.cs index b9040cd24..f5a858c2f 100644 --- a/StardewArchipelago/Locations/LocationNameMatcher.cs +++ b/StardewArchipelago/Locations/LocationNameMatcher.cs @@ -23,6 +23,7 @@ public class LocationNameMatcher }, { "Trash", new[] { "Trash Can Upgrade" } }, { "Hardwood", new[] { "Hardwood Display" } }, + { "Anchor", new[] { "Boat Anchor" } }, }; public LocationNameMatcher() diff --git a/StardewArchipelagoTests/LocationNameMatcherTests.cs b/StardewArchipelagoTests/LocationNameMatcherTests.cs index 5a3ec7d57..6d3ad6428 100644 --- a/StardewArchipelagoTests/LocationNameMatcherTests.cs +++ b/StardewArchipelagoTests/LocationNameMatcherTests.cs @@ -39,6 +39,7 @@ public void GetAllLocationsContainingWordTruePositivesTest(string itemName, stri [TestCase("Snail", new[] { "Open Professor Snail Cave" }, TestName = "Professor Snail Cave")] [TestCase("Stone", new[] { "Shipsanity: Swirl Stone", "Smashing Stone" }, TestName = "Swirl Stone")] [TestCase("Hardwood", new[] { "Shipsanity: Hardwood Display: Amphibian Fossil" }, TestName = "Hardwood Displays")] + [TestCase("Anchor", new[] { "Repair Boat Anchor" }, TestName = "Boat Anchor")] public void GetAllLocationsContainingWordFalsePositivesTest(string itemName, string[] locationsNotMatching) { // Arrange