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.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/SMAPI.Internal.Patching/HarmonyPatcher.cs b/src/SMAPI.Internal.Patching/HarmonyPatcher.cs
index c07e3b41..fc239fd2 100644
--- a/src/SMAPI.Internal.Patching/HarmonyPatcher.cs
+++ b/src/SMAPI.Internal.Patching/HarmonyPatcher.cs
@@ -1,3 +1,5 @@
+#nullable disable
+
using System;
using HarmonyLib;
@@ -15,7 +17,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)
{