From 77f20ddc8947a5c43e957735a8f8fa58b5a6f36f Mon Sep 17 00:00:00 2001 From: Darthpred Date: Tue, 23 Oct 2012 12:27:06 +0400 Subject: [PATCH] prevents marks to be shown in BGs and arenas. Imo they are useless there. But sometimes people are using mark to differ team healers. so I'm not sure bout this change. --- ElvUI_SLE/modules/marks/marks.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ElvUI_SLE/modules/marks/marks.lua b/ElvUI_SLE/modules/marks/marks.lua index fc67c9d..d9e5763 100644 --- a/ElvUI_SLE/modules/marks/marks.lua +++ b/ElvUI_SLE/modules/marks/marks.lua @@ -188,7 +188,7 @@ function RM:UpdateVisibility() local inInstance, instanceType = IsInInstance() if E.db.sle.marks.enabled then - if inInstance and E.db.sle.marks.showinside then + if (inInstance and instanceType ~= "pvp") and E.db.sle.marks.showinside then mark_menu:Show() elseif not inInstance and E.db.sle.marks.showinside then mark_menu:Hide() -- 1.7.9.5