unitframes: revert target if no focus was found

This commit is contained in:
shagu
2018-09-06 20:31:36 +02:00
parent ce587837d9
commit 6dad5edf93
+8
View File
@@ -684,7 +684,15 @@ function pfUI.uf:EnableScripts()
f:SetScript("OnClick", function ()
if not this.label and this.unitname then
local player = UnitIsUnit("target", "player")
TargetByName(this.unitname)
if strlower(UnitName("target")) ~= strlower(this.unitname) then
if player then
TargetUnit("player")
else
TargetLastTarget()
end
end
else
pfUI.uf:ClickAction(arg1)
end