From b200623cb6d033d51aba37a28cc74c205b6b0ef2 Mon Sep 17 00:00:00 2001 From: Arne Kiesewetter Date: Wed, 25 May 2022 00:53:44 +0200 Subject: [PATCH] A typo lol --- NeosModLoader/ModConfiguration.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NeosModLoader/ModConfiguration.cs b/NeosModLoader/ModConfiguration.cs index d6937b8..636dfde 100644 --- a/NeosModLoader/ModConfiguration.cs +++ b/NeosModLoader/ModConfiguration.cs @@ -153,7 +153,7 @@ public class ModConfiguration : IModConfigurationDefinition private int debounceMilliseconds = 3000; // used to keep track of mods that spam Save(): - // any mod that calls Save() for the a ModConfiguration within debounceMilliseconds of the previous call to the same ModConfiguration + // any mod that calls Save() for the ModConfiguration within debounceMilliseconds of the previous call to the same ModConfiguration // will be put into Ultimate Punishment Mode, and ALL their Save() calls, regardless of ModConfiguration, will be debounced. // The naughty list is global, while the actual debouncing is per-configuration. private static ISet naughtySavers = new HashSet();