superwow: convert enchant links to spell links

This commit is contained in:
shagu
2024-11-06 23:07:01 +01:00
parent 727bf44acb
commit b72247c8da
+10
View File
@@ -1,6 +1,16 @@
-- Compatibility layer to use castbars provided by SuperWoW:
-- https://github.com/balakethelock/SuperWoW
pfUI:RegisterModule("superwow", "vanilla", function ()
-- Allow to click on AtlasLoot links while using SuperWoW
-- I don't know whats going on there, I just want to be able to
-- click those links in chat. I haven't analysed it any further.
local HookSetItemRef = SetItemRef
_G.SetItemRef = function(link, text, button)
link = string.gsub(link, "enchant:", "spell:")
HookSetItemRef(link, text, button)
end
local unitcast = CreateFrame("Frame")
unitcast:RegisterEvent("UNIT_CASTEVENT")
unitcast:SetScript("OnEvent", function()