From e58cee46ee4c670e5a9be2a64ca5c0e6bbc0bed0 Mon Sep 17 00:00:00 2001 From: Salikh Gurgenidze Date: Wed, 19 Nov 2025 17:39:43 +0400 Subject: [PATCH] fix: removed logs routing --- Core/Utils.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/Core/Utils.lua b/Core/Utils.lua index 9e37b25..cce5bfa 100644 --- a/Core/Utils.lua +++ b/Core/Utils.lua @@ -354,10 +354,8 @@ function Utils:GetItemPreferredContainer(itemLink) -- Only route PROJECTILE category items that are specifically arrows or bullets if itemCategory == "Projectile" then if itemType == "Arrow" then - addon:Print("-> Routing to QUIVER (Projectile - Arrow)") return "quiver" elseif itemType == "Bullet" then - addon:Print("-> Routing to AMMO (Projectile - Bullet)") return "ammo" end end