Fixed issue with the latest wow patch 82505

Fixes for the client change: "Chat channel 'SAY' cannot be used in open world anymore".
This commit is contained in:
Tercio Jose
2019-09-28 13:46:19 -03:00
parent b4c9a55cc2
commit 1d230f61ee
5 changed files with 13 additions and 10 deletions
+4 -2
View File
@@ -260,8 +260,10 @@
elseif (channel == "PRINT") then
print (msg)
else
SendChatMessage (msg, channel)
else --say channel?
if (IsInInstance()) then --patch 80205 cannot use 'say' channel outside instances
SendChatMessage (msg, channel)
end
--elseif (channel == "SAY" or channel == "YELL" or channel == "RAID_WARNING" or channel == "OFFICER" or channel == "GUILD" or channel == "EMOTE") then