Skip to content

Commit

Permalink
Update PeltManager.cs
Browse files Browse the repository at this point in the history
* String is spelled with one `r` not two
  • Loading branch information
SaxbyMod authored Nov 23, 2024
1 parent ae7d60c commit 47027da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion InscryptionAPI/Pelts/PeltManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ internal static void CreateDialogueEvents()

public static string GetTierNameFromPelt(string cardName)
{
strring result = "";
string result = "";
if (cardName.Contains("pelt") || cardName.Contains("pelt")) {
result = cardName.ToLowerInvariant().Replace("pelt", "").Replace("pelts", "");
result = result.Split('_').Last().ToTitleCase();
Expand Down

0 comments on commit 47027da

Please sign in to comment.