From c8496d0d7a4ec5a1eeb7f3eea947a3b2f3893fe9 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Mon, 13 Jan 2025 21:43:49 -0500 Subject: [PATCH] Minor update to invocation in ItemDictionary --- SabreTools.DatFiles/ItemDictionary.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SabreTools.DatFiles/ItemDictionary.cs b/SabreTools.DatFiles/ItemDictionary.cs index a915507e..c364d8fd 100644 --- a/SabreTools.DatFiles/ItemDictionary.cs +++ b/SabreTools.DatFiles/ItemDictionary.cs @@ -862,7 +862,8 @@ namespace SabreTools.DatFiles } // Set the value in the key to the new set - this[key] = newItems; + Remove(key); + Add(key, newItems); #if NET40_OR_GREATER || NETCOREAPP });