From 943ca852f756069a873facf32774bc5eecd4e131 Mon Sep 17 00:00:00 2001 From: mikx Date: Sat, 30 May 2026 19:23:56 -0400 Subject: [PATCH] Fixed Stone using Wood value --- scripts/GUI/HUD/Components/HUDPlayer.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/GUI/HUD/Components/HUDPlayer.as b/scripts/GUI/HUD/Components/HUDPlayer.as index fc11a41..bdbaf4f 100644 --- a/scripts/GUI/HUD/Components/HUDPlayer.as +++ b/scripts/GUI/HUD/Components/HUDPlayer.as @@ -166,7 +166,7 @@ class HUDPlayer : HUDComponent // Materials Tracking int goldCount = record.GetMaterial(MaterialType::Gold); int woodCount = record.GetMaterial(MaterialType::Wood); - int stoneCount = record.GetMaterial(MaterialType::Wood); + int stoneCount = record.GetMaterial(MaterialType::Stone); int ironCount = record.GetMaterial(MaterialType::Iron); int crysCount = record.GetMaterial(MaterialType::Crystals); int dustCount = record.GetMaterial(MaterialType::Dust);