From aa0674fe0febabe0fcd94e29153c0ed7705ff3fb Mon Sep 17 00:00:00 2001 From: Adrian L Lange Date: Sun, 23 Nov 2014 08:03:22 +0100 Subject: [PATCH] Make sure all the window events run all the time too --- QuickQuest.lua | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/QuickQuest.lua b/QuickQuest.lua index 5aae487..b614d26 100644 --- a/QuickQuest.lua +++ b/QuickQuest.lua @@ -245,35 +245,35 @@ end) QuickQuest:Register('BANKFRAME_OPENED', function() atBank = true -end) +end, true) QuickQuest:Register('BANKFRAME_CLOSED', function() atBank = false -end) +end, true) QuickQuest:Register('GUILDBANKFRAME_OPENED', function() atBank = true -end) +end, true) QuickQuest:Register('GUILDBANKFRAME_CLOSED', function() atBank = false -end) +end, true) QuickQuest:Register('MAIL_SHOW', function() atMail = true -end) +end, true) QuickQuest:Register('MAIL_CLOSED', function() atMail = false -end) +end, true) QuickQuest:Register('MERCHANT_SHOW', function() atMerchant = true -end) +end, true) QuickQuest:Register('MERCHANT_CLOSED', function() atMerchant = false -end) +end, true) local sub = string.sub QuickQuest:Register('MODIFIER_STATE_CHANGED', function(key, state) -- 1.7.9.5