From 882cd0162821a3b3b6146776d385aee799ac1f27 Mon Sep 17 00:00:00 2001 From: Xurkon Date: Thu, 2 Apr 2026 19:17:52 -0500 Subject: [PATCH] debug: Add prints to UpdateSettings --- Modules/Arrow/QuestieArrow.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Modules/Arrow/QuestieArrow.lua b/Modules/Arrow/QuestieArrow.lua index 219d229..d998c07 100644 --- a/Modules/Arrow/QuestieArrow.lua +++ b/Modules/Arrow/QuestieArrow.lua @@ -794,8 +794,11 @@ function QuestieArrow:ApplyAlpha() end function QuestieArrow:UpdateSettings() + print("UpdateSettings called, arrowFrame=" .. tostring(arrowFrame)) EnsureArrowFrame() + print("After EnsureArrowFrame, arrowFrame=" .. tostring(arrowFrame)) if arrowFrame then + print("Setting scale to " .. tostring(_GetArrowScale())) arrowFrame:SetScale(_GetArrowScale()) arrowFrame:SetAlpha(_GetArrowAlpha()) end