View Single Post
12-15-11, 06:23 PM   #14
Vlad
A Molten Giant
 
Vlad's Avatar
AddOn Author - Click to view addons
Join Date: Dec 2005
Posts: 793
Code:
local orig = DEFAULT_CHAT_FRAME.AddMessage
function DEFAULT_CHAT_FRAME:AddMessage(msg, ...)
  if type(msg) == "string" then
    msg = msg:gsub("|T.+|t", "") -- should replace any icon tags and their content
  end
  return orig(self, ...)
end
Just an idea, you can make it into an addon using http://addon.ziuo.net/ if you like.
  Reply With Quote