Fix missing assignment.

This commit is contained in:
E. Behar 2018-07-08 10:22:23 -07:00 committed by GitHub
parent 1dfcbc6173
commit f6254e17ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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))
{