View Single Post
11-15-17, 04:26 PM   #3
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2007
Posts: 1,710
You're trying to match first, then evaluate a string by itself.

lua Code:
  1. if event == "CHAT_MSG_TEXT_EMOTE" or "CHAT_MSG_EMOTE" then

should be

lua Code:
  1. if event == "CHAT_MSG_TEXT_EMOTE" or event == "CHAT_MSG_EMOTE" then
  Reply With Quote