From d168e845dbc889eb86217945dce1122c551548ce Mon Sep 17 00:00:00 2001 From: shagu Date: Tue, 9 Oct 2018 21:06:38 +0200 Subject: [PATCH] nameplates: fix click events on legacy plates --- modules/nameplates.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nameplates.lua b/modules/nameplates.lua index b5471675..a53e6a93 100644 --- a/modules/nameplates.lua +++ b/modules/nameplates.lua @@ -401,7 +401,7 @@ pfUI:RegisterModule("nameplates", function () -- disable click events while spell is targeting local mouseEnabled = this.nameplate:IsMouseEnabled() - if C.nameplates["clickthrough"] == "0" and SpellIsTargeting() == mouseEnabled then + if C.nameplates["clickthrough"] == "0" and C.nameplates["legacy"] == "0" and SpellIsTargeting() == mouseEnabled then this.nameplate:EnableMouse(not mouseEnabled) end