From 40464a361fb3e6705d2afdc2f68963befb92ab49 Mon Sep 17 00:00:00 2001 From: annabunches Date: Sat, 22 Feb 2025 13:24:54 -0500 Subject: [PATCH] Fix Iron ingot name. --- InfoDisplays/OreReport.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InfoDisplays/OreReport.cs b/InfoDisplays/OreReport.cs index 32644a1..bab822b 100644 --- a/InfoDisplays/OreReport.cs +++ b/InfoDisplays/OreReport.cs @@ -22,7 +22,7 @@ namespace IngameScript private Dictionary _ingotTypes = new Dictionary { - ["Iron"] = MyItemType.MakeIngot("Ingot_Iron"), + ["Iron"] = MyItemType.MakeIngot("Iron"), ["Silicon"] = MyItemType.MakeIngot("Silicon"), ["Nickel"] = MyItemType.MakeIngot("Nickel"), ["Cobalt"] = MyItemType.MakeIngot("Cobalt"),