From c6b5dba83b776b42a456d92b2c37057256c6fc56 Mon Sep 17 00:00:00 2001 From: Felipe Maya Muniz <67922105+gnai-creator@users.noreply.github.com> Date: Sat, 28 Jun 2025 21:32:13 -0300 Subject: [PATCH] fix: Adds colored logs to fletching (#2223) --- Projects/UOContent/Engines/Craft/DefBowFletching.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Projects/UOContent/Engines/Craft/DefBowFletching.cs b/Projects/UOContent/Engines/Craft/DefBowFletching.cs index eb6e04166..cd75829a1 100644 --- a/Projects/UOContent/Engines/Craft/DefBowFletching.cs +++ b/Projects/UOContent/Engines/Craft/DefBowFletching.cs @@ -258,5 +258,15 @@ public class DefBowFletching : CraftSystem MarkOption = true; Repair = Core.AOS; + + SetSubRes(typeof(Log), 1072643); + + AddSubRes(typeof(Log), 1072643, 0.0, 1044041, 1072652); + AddSubRes(typeof(OakLog), 1072644, 65.0, 1044041, 1072652); + AddSubRes(typeof(AshLog), 1072645, 80.0, 1044041, 1072652); + AddSubRes(typeof(YewLog), 1072646, 95.0, 1044041, 1072652); + AddSubRes(typeof(HeartwoodLog), 1072647, 100.0, 1044041, 1072652); + AddSubRes(typeof(BloodwoodLog), 1072648, 100.0, 1044041, 1072652); + AddSubRes(typeof(FrostwoodLog), 1072649, 100.0, 1044041, 1072652); } }