From df73bfbac82f010599ae399394cdd41d89eae116 Mon Sep 17 00:00:00 2001 From: Adrian L Lange Date: Sat, 13 Oct 2012 12:00:49 +0200 Subject: [PATCH] Filter more spam from the chatframe --- Monomyth.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Monomyth.lua b/Monomyth.lua index 3bed39b..73adc44 100644 --- a/Monomyth.lua +++ b/Monomyth.lua @@ -240,7 +240,7 @@ Monomyth:Register('BAG_UPDATE', function(bag) end) ChatFrame_AddMessageEventFilter('CHAT_MSG_SYSTEM', function(self, event, message) - if(message == ERR_QUEST_ALREADY_DONE) then + if(message == ERR_QUEST_ALREADY_DONE or message == ERR_QUEST_FAILED_LOW_LEVEL) then return true end end) -- 1.7.9.5