From 9d3fe39a253f1b773f207e823da5aa1bb0db425e Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Mon, 24 Feb 2025 09:27:43 -0500 Subject: [PATCH] Fix tight recursion loop error --- SabreTools.DatFiles/DatFile.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SabreTools.DatFiles/DatFile.cs b/SabreTools.DatFiles/DatFile.cs index dd564f7f..5d9e516c 100644 --- a/SabreTools.DatFiles/DatFile.cs +++ b/SabreTools.DatFiles/DatFile.cs @@ -275,13 +275,13 @@ namespace SabreTools.DatFiles /// Get the index and machine associated with an item index /// public KeyValuePair GetMachineForItemDB(long itemIndex) - => GetMachineForItemDB(itemIndex); + => ItemsDB.GetMachineForItem(itemIndex); /// /// Get the index and source associated with an item index /// public KeyValuePair GetSourceForItemDB(long itemIndex) - => GetSourceForItemDB(itemIndex); + => ItemsDB.GetSourceForItem(itemIndex); /// /// Remove a key from the file dictionary if it exists