Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Witchybun committed Jul 11, 2024
1 parent 9ea9906 commit 43c91ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Data/ArchipelagoGiftingCases/StardewValley.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class StardewValleyGifts
"Haste Elixir", "Lightning Elixir", "Armor Elixir", "Gravity Elixir", "Barbarian Elixir"
};

private static readonly List<string> SeedSuffices = new()
private static readonly List<string> SeedSuffixes = new()
{
"Seeds", "Starter", "Sapling"
};
Expand All @@ -30,7 +30,7 @@ public static bool IsStardewItemGiftable(string itemName)
{
return true;
}
else if (SeedSuffices.Contains(itemName.Split(' ').Last()))
else if (SeedSuffixes.Contains(itemName.Split(' ').Last()))
{
return true;
}
Expand Down

0 comments on commit 43c91ff

Please sign in to comment.