Create passthrough methods for scaffolding

This commit is contained in:
Matt Nadareski
2025-01-12 23:15:30 -05:00
parent d80a6b173c
commit f4743e859e
18 changed files with 508 additions and 368 deletions

View File

@@ -71,7 +71,7 @@ namespace SabreTools.DatFiles
// Loop through the sorted items and create games for them
foreach (string key in Items.SortedKeys)
{
var items = Items.FilteredItems(key);
var items = Items.GetItemsForBucket(key, filter: true);
if (items == null || items.Count == 0)
continue;
@@ -494,7 +494,7 @@ namespace SabreTools.DatFiles
// Loop through the sorted items and create games for them
foreach (string key in ItemsDB.SortedKeys)
{
var items = ItemsDB.GetItemsForBucket(key, filter: true);
var items = GetItemsForBucketDB(key, filter: true);
if (items == null || items.Count == 0)
continue;