mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Create passthrough methods for scaffolding
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user