mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Set Remove tag, not actually remove
This commit is contained in:
@@ -242,16 +242,11 @@ namespace SabreTools.DatFiles
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
// Filter all items in the current key
|
// Filter all items in the current key
|
||||||
List<DatItem> newItems = [];
|
|
||||||
foreach (var item in items)
|
foreach (var item in items)
|
||||||
{
|
{
|
||||||
if (item.PassesFilter(filterRunner))
|
if (item.PassesFilter(filterRunner))
|
||||||
newItems.Add(item);
|
item.SetFieldValue<bool?>(DatItem.RemoveKey, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set the value in the key to the new set
|
|
||||||
Remove(bucketName);
|
|
||||||
Add(bucketName, newItems);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -270,11 +265,8 @@ namespace SabreTools.DatFiles
|
|||||||
foreach (var item in items)
|
foreach (var item in items)
|
||||||
{
|
{
|
||||||
if (item.Value.PassesFilterDB(filterRunner))
|
if (item.Value.PassesFilterDB(filterRunner))
|
||||||
newItems.Add(item.Key);
|
item.Value.SetFieldValue<bool?>(DatItem.RemoveKey, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set the value in the key to the new set
|
|
||||||
ItemsDB._buckets[bucketName] = newItems;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
Reference in New Issue
Block a user