summaryrefslogtreecommitdiff
path: root/src/SMAPI
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI')
-rw-r--r--src/SMAPI/Framework/ModLoading/RewriteFacades/HarmonyInstanceMethods.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/SMAPI/Framework/ModLoading/RewriteFacades/HarmonyInstanceMethods.cs b/src/SMAPI/Framework/ModLoading/RewriteFacades/HarmonyInstanceMethods.cs
index 78cf25f8..17b6bcd9 100644
--- a/src/SMAPI/Framework/ModLoading/RewriteFacades/HarmonyInstanceMethods.cs
+++ b/src/SMAPI/Framework/ModLoading/RewriteFacades/HarmonyInstanceMethods.cs
@@ -34,6 +34,7 @@ namespace StardewModdingAPI.Framework.ModLoading.RewriteFacades
}
catch (Exception ex)
{
+ // get patch types
var patchTypes = new List<string>();
if (prefix != null)
patchTypes.Add("prefix");
@@ -42,7 +43,12 @@ namespace StardewModdingAPI.Framework.ModLoading.RewriteFacades
if (transpiler != null)
patchTypes.Add("transpiler");
- throw new Exception($"Harmony instance {this.Id} failed applying {string.Join("/", patchTypes)} to method {original.DeclaringType?.FullName}.{original.Name}.", ex);
+ // get original method label
+ string methodLabel = original != null
+ ? $"method {original.DeclaringType?.FullName}.{original.Name}"
+ : "null method";
+
+ throw new Exception($"Harmony instance {this.Id} failed applying {string.Join("/", patchTypes)} to {methodLabel}.", ex);
}
}
}