From f56ec6d0a1022dc0f158f8e5abacdbfcf4800091 Mon Sep 17 00:00:00 2001 From: Cj <161484149+CJ-SPT@users.noreply.github.com> Date: Tue, 5 Nov 2024 14:25:54 -0500 Subject: [PATCH] Fix typo --- RecodeItLib/Enums/ENoMatchReason.cs | 2 +- RecodeItLib/Remapper/ReCodeItRemapper.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/RecodeItLib/Enums/ENoMatchReason.cs b/RecodeItLib/Enums/ENoMatchReason.cs index 088b43e..1ae51f4 100644 --- a/RecodeItLib/Enums/ENoMatchReason.cs +++ b/RecodeItLib/Enums/ENoMatchReason.cs @@ -27,5 +27,5 @@ public enum ENoMatchReason NestedTypeExclude, NestedTypeCount, EventsInclude, - EventExclude + EventsExclude } \ No newline at end of file diff --git a/RecodeItLib/Remapper/ReCodeItRemapper.cs b/RecodeItLib/Remapper/ReCodeItRemapper.cs index 24b42f5..8f3cae0 100644 --- a/RecodeItLib/Remapper/ReCodeItRemapper.cs +++ b/RecodeItLib/Remapper/ReCodeItRemapper.cs @@ -402,7 +402,7 @@ public class ReCodeItRemapper if (!types.Any()) { - AllTypesFilteredOutFor(mapping, ENoMatchReason.EventExclude); + AllTypesFilteredOutFor(mapping, ENoMatchReason.EventsExclude); mapping.TypeCandidates.UnionWith(types); return false; }