diff --git a/CHANGELOG.md b/CHANGELOG.md
index 76d75f6..9a5b04e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,8 @@
# Changelog
+## 0.0.15 (4 June 2023)
+- Add a section to items not tied to a location with "craftable" items that the character already has materials for in the inventory
+
## 0.0.14 (4 June 2023)
- Performance improvements
- Do not display warning about unknown Dran Dream item
diff --git a/Remnant2SaveAnalyzer-dev.sln.DotSettings b/Remnant2SaveAnalyzer-dev.sln.DotSettings
index 2cbf455..a12ad5b 100644
--- a/Remnant2SaveAnalyzer-dev.sln.DotSettings
+++ b/Remnant2SaveAnalyzer-dev.sln.DotSettings
@@ -10,6 +10,7 @@
True
True
True
+ True
True
True
True
diff --git a/Remnant2SaveAnalyzer/Remnant2SaveAnalyzer.csproj b/Remnant2SaveAnalyzer/Remnant2SaveAnalyzer.csproj
index 3ba48ee..374cc50 100644
--- a/Remnant2SaveAnalyzer/Remnant2SaveAnalyzer.csproj
+++ b/Remnant2SaveAnalyzer/Remnant2SaveAnalyzer.csproj
@@ -16,7 +16,7 @@
-
+
diff --git a/Remnant2SaveAnalyzer/Views/Pages/WorldAnalyzerPage.xaml.cs b/Remnant2SaveAnalyzer/Views/Pages/WorldAnalyzerPage.xaml.cs
index bc788fb..65ee1ac 100644
--- a/Remnant2SaveAnalyzer/Views/Pages/WorldAnalyzerPage.xaml.cs
+++ b/Remnant2SaveAnalyzer/Views/Pages/WorldAnalyzerPage.xaml.cs
@@ -746,7 +746,10 @@ private List FilterGridData(Profile profile, RolledWorld?
if (Properties.Settings.Default.ShowNoLocation)
{
- result.AddRange(AddLootGroup(world.ProgressionItems!, "Other", missingIds));
+ foreach (LootGroup lootGroup in world.AdditionalItems)
+ {
+ result.AddRange(AddLootGroup(lootGroup, "Other", missingIds));
+ }
}
@@ -764,7 +767,7 @@ private List FilterGridData(Profile profile, RolledWorld?
private List AddLootGroup(LootGroup lg, string locationName, List missingIds)
{
- List result = new();
+ List result = [];
List items = lg.Items;
if (!Properties.Settings.Default.ShowCoopItems)
{