From: Aleksi Blinnikka Date: Fri, 3 Dec 2021 12:40:08 +0000 (+0200) Subject: priest and mage click action updates X-Git-Url: https://www.aleksib.fi/git/wowui.git/commitdiff_plain/a7dd68bc57fdc3733ae09bdaef561a6df5e7b338?ds=sidebyside priest and mage click action updates --- diff --git a/kehys/kehys.toc b/kehys/kehys.toc index 6d251f3..a6d4eba 100644 --- a/kehys/kehys.toc +++ b/kehys/kehys.toc @@ -9,6 +9,7 @@ setup.lua paladin.lua priest.lua shaman.lua +mage.lua updater.lua events.lua frame.lua diff --git a/kehys/mage.lua b/kehys/mage.lua new file mode 100644 index 0000000..a43195b --- /dev/null +++ b/kehys/mage.lua @@ -0,0 +1,6 @@ +-- mage.lua +local _, addon = ...; +addon.Clickheal["MAGE"] = { + ["ctrl-type1"] = "spell", + ["ctrl-spell1"] = "Remove Curse", +}; diff --git a/kehys/priest.lua b/kehys/priest.lua index 913fefb..f996e0e 100644 --- a/kehys/priest.lua +++ b/kehys/priest.lua @@ -6,9 +6,11 @@ addon.Clickheal["PRIEST"] = { ["shift-type1"] = "macro", ["shift-type2"] = "macro", ["ctrl-type1"] = "spell", + ["ctrl-type2"] = "spell", ["macrotext1"] = "/cast [@mouseover,help,nodead,spec:2] Heal; [@mouseover,help,nodead] Power Word: Shield", ["macrotext2"] = "/cast [@mouseover,help,nodead,spec:2] Holy Word: Serenity; [@mouseover,help,nodead] Penance", ["shift-macrotext1"] = "/cast [@mouseover,help,nodead,spec:2] Flash Heal; [@mouseover,help,nodead] Shadow Mend", - ["shift-macrotext2"] = "/cast [@mouseover,help,nodead,spec:2] Prayer of Healing; [@mouseover,help,nodead] Shadow Covenant", + ["shift-macrotext2"] = "/cast [@mouseover,help,nodead,spec:2] Circle of Healing; [@mouseover,help,nodead] Shadow Covenant", ["ctrl-spell1"] = "Purify", + ["ctrl-spell2"] = "Power Infusion", };