From 38debaddb7f1a57e66424e6c2255d4170a157ab8 Mon Sep 17 00:00:00 2001 From: Nytra <14206961+Nytra@users.noreply.github.com> Date: Sat, 2 Nov 2024 00:10:34 +0000 Subject: [PATCH] Make GetFeaturePatches virtual so you don't need to override it --- MonkeyLoader/Patching/MonkeyBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MonkeyLoader/Patching/MonkeyBase.cs b/MonkeyLoader/Patching/MonkeyBase.cs index e847349..8078666 100644 --- a/MonkeyLoader/Patching/MonkeyBase.cs +++ b/MonkeyLoader/Patching/MonkeyBase.cs @@ -228,7 +228,7 @@ internal static TMonkey GetInstance(Type type, Mod mod) where TMonkey : /// /// Gets the impacts this (pre-)patcher has on certain features. /// - protected abstract IEnumerable GetFeaturePatches(); + protected virtual IEnumerable GetFeaturePatches() => []; /// /// Lets this monkey react to being disabled at runtime.