summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/ModHelpers/ReflectionHelper.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI/Framework/ModHelpers/ReflectionHelper.cs')
-rw-r--r--src/SMAPI/Framework/ModHelpers/ReflectionHelper.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/SMAPI/Framework/ModHelpers/ReflectionHelper.cs b/src/SMAPI/Framework/ModHelpers/ReflectionHelper.cs
index 86c327ed..916c215d 100644
--- a/src/SMAPI/Framework/ModHelpers/ReflectionHelper.cs
+++ b/src/SMAPI/Framework/ModHelpers/ReflectionHelper.cs
@@ -122,7 +122,8 @@ namespace StardewModdingAPI.Framework.ModHelpers
/// <returns>Returns the same property instance for convenience.</returns>
private IReflectedProperty<T> AssertAccessAllowed<T>(IReflectedProperty<T> property)
{
- this.AssertAccessAllowed(property?.PropertyInfo);
+ this.AssertAccessAllowed(property?.PropertyInfo.GetMethod?.GetBaseDefinition());
+ this.AssertAccessAllowed(property?.PropertyInfo.SetMethod?.GetBaseDefinition());
return property;
}
@@ -131,7 +132,7 @@ namespace StardewModdingAPI.Framework.ModHelpers
/// <returns>Returns the same method instance for convenience.</returns>
private IReflectedMethod AssertAccessAllowed(IReflectedMethod method)
{
- this.AssertAccessAllowed(method?.MethodInfo);
+ this.AssertAccessAllowed(method?.MethodInfo.GetBaseDefinition());
return method;
}