Make sure all the window events run all the time too
Adrian L Lange [11-23-14 - 07:03]
Make sure all the window events run all the time too
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)