Skip to content

Commit

Permalink
- Added indicator exception for the boat anchor
Browse files Browse the repository at this point in the history
  • Loading branch information
agilbert1412 committed May 1, 2024
1 parent 057c1b8 commit a1dadea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions StardewArchipelago/Locations/LocationNameMatcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ public class LocationNameMatcher
},
{ "Trash", new[] { "Trash Can Upgrade" } },
{ "Hardwood", new[] { "Hardwood Display" } },
{ "Anchor", new[] { "Boat Anchor" } },
};

public LocationNameMatcher()
Expand Down
1 change: 1 addition & 0 deletions StardewArchipelagoTests/LocationNameMatcherTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a1dadea

Please sign in to comment.