From 2f8b3e65829b0259d23593ff61e41790629fdf3f Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 13 Mar 2024 19:45:34 -0400 Subject: [PATCH] Add note about future improvement to IDDB --- SabreTools.DatFiles/ItemDictionaryDB.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SabreTools.DatFiles/ItemDictionaryDB.cs b/SabreTools.DatFiles/ItemDictionaryDB.cs index 80005d1b..aeff2f93 100644 --- a/SabreTools.DatFiles/ItemDictionaryDB.cs +++ b/SabreTools.DatFiles/ItemDictionaryDB.cs @@ -102,6 +102,8 @@ namespace SabreTools.DatFiles /// public long AddItem(DatItem item, long machineIndex) { + // TODO: Add to buckets based on current sorting + _items[_itemIndex++] = item; _itemToMachineMapping[_itemIndex - 1] = machineIndex; DatStatistics.AddItemStatistics(item);