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 });