From 4eb7ef99262db28a8dde06e21df8dae9f2d285e6 Mon Sep 17 00:00:00 2001 From: KyrosKrane Date: Tue, 7 Jul 2015 21:18:36 +0400 Subject: [PATCH] Fixing shown versus hidden messages --- AnnoyingPopupRemover.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AnnoyingPopupRemover.lua b/AnnoyingPopupRemover.lua index f68f5af..456c349 100644 --- a/AnnoyingPopupRemover.lua +++ b/AnnoyingPopupRemover.lua @@ -202,13 +202,13 @@ end -- APR:PrintHelp() -- popup is optional function APR:PrintStatus(popup) if not popup or "bind" == popup then - APR:ChatPrint (L["Confirmation pop-up when looting bind-on-pickup items will be "] .. (APR.DB.HideBind and L["shown"] or L["hidden"]) .. "."); + APR:ChatPrint (L["Confirmation pop-up when looting bind-on-pickup items will be "] .. (APR.DB.HideBind and L["hidden"] or L["shown"]) .. "."); end if not popup or "roll" == popup then - APR:ChatPrint (L["Confirmation pop-up when rolling on bind-on-pickup items will be "] .. (APR.DB.HideRoll and L["shown"] or L["hidden"]) .. "."); + APR:ChatPrint (L["Confirmation pop-up when rolling on bind-on-pickup items will be "] .. (APR.DB.HideRoll and L["hidden"] or L["shown"]) .. "."); end if not popup or "void" == popup then - APR:ChatPrint (L["Confirmation pop-up when depositing modified items into void storage will be "] .. (APR.DB.HideVoid and L["shown"] or L["hidden"]) .. "."); + APR:ChatPrint (L["Confirmation pop-up when depositing modified items into void storage will be "] .. (APR.DB.HideVoid and L["hidden"] or L["shown"]) .. "."); end end -- APR:PrintStatus() -- 1.7.9.5