summaryrefslogtreecommitdiff
path: root/src/SMAPI.Internal.Patching/HarmonyPatcher.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI.Internal.Patching/HarmonyPatcher.cs')
-rw-r--r--src/SMAPI.Internal.Patching/HarmonyPatcher.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI.Internal.Patching/HarmonyPatcher.cs b/src/SMAPI.Internal.Patching/HarmonyPatcher.cs
index c07e3b41..6f30c241 100644
--- a/src/SMAPI.Internal.Patching/HarmonyPatcher.cs
+++ b/src/SMAPI.Internal.Patching/HarmonyPatcher.cs
@@ -15,7 +15,7 @@ namespace StardewModdingAPI.Internal.Patching
/// <param name="patchers">The patchers to apply.</param>
public static Harmony Apply(string id, IMonitor monitor, params IPatcher[] patchers)
{
- Harmony harmony = new Harmony(id);
+ Harmony harmony = new(id);
foreach (IPatcher patcher in patchers)
{