From b9c21f0eff3c8f92cbf9cdfd0280165dc7316358 Mon Sep 17 00:00:00 2001 From: KyrosKrane Date: Sat, 11 Jul 2015 09:45:25 +0400 Subject: [PATCH] Make sure we use the user's most recent requests. --- AnnoyingPopupRemover.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AnnoyingPopupRemover.lua b/AnnoyingPopupRemover.lua index a929ba9..a7121b7 100644 --- a/AnnoyingPopupRemover.lua +++ b/AnnoyingPopupRemover.lua @@ -469,7 +469,7 @@ function APR.Events:LOOT_BIND_CONFIRM(Frame, ...) end -- if APR.DebugMode -- If the user didn't ask us to hide this popup, just return. - if not APR_DB.HideBind then + if not APR.DB.HideBind then AOR:DebugPrint ("Hidebind off, not auto confirming"); return end; @@ -491,7 +491,7 @@ function APR.Events:CONFIRM_LOOT_ROLL(...) APR:DebugPrint ("rollType is ", rollType); -- If the user didn't ask us to hide this popup, just return. - if not APR_DB.HideRoll then + if not APR.DB.HideRoll then AOR:DebugPrint ("Hidebind off, not auto confirming"); return end; @@ -512,7 +512,7 @@ function APR.Events:VOID_DEPOSIT_WARNING(...) APR:DebugPrint ("slot is ", slot); -- If the user didn't ask us to hide this popup, just return. - if not APR_DB.HideVoid then + if not APR.DB.HideVoid then AOR:DebugPrint ("Hidebind off, not auto confirming"); return end; -- 1.7.9.5