summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/SMAPI/Framework/ModLoading/RewriteHelper.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Framework/ModLoading/RewriteHelper.cs b/src/SMAPI/Framework/ModLoading/RewriteHelper.cs
index 74498a3e..1600069d 100644
--- a/src/SMAPI/Framework/ModLoading/RewriteHelper.cs
+++ b/src/SMAPI/Framework/ModLoading/RewriteHelper.cs
@@ -114,7 +114,7 @@ namespace StardewModdingAPI.Framework.ModLoading
/// <returns>true if the type IDs look like the same type, false if not.</returns>
public static bool LooksLikeSameType(string typeA, string typeB)
{
- string placeholderType, actualType = "";
+ string placeholderType = "", actualType = "";
if (RewriteHelper.HasPlaceholder(typeA))
{