View Single Post
04/25/17, 01:41 PM   #7
sirinsidiator
 
sirinsidiator's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 1,578
Is your "filter" really working?
As far as I am aware the chat log automatically logs all channels. I don't think you can influence that from the addon side, as the logging is done in C and most likely before you see the message in Lua. I am also not sure if shutting off the log in cyrodiil is desireable, as it would again affect all channels.

p.s. You do not need ; when you put if/else statements into one line:
Lua Code:
  1. if something then doThis() else doThat() end
works the same with or without semicolon.
  Reply With Quote