View Single Post
03-19-21, 04:45 AM   #4
hamunaptra
A Murloc Raider
Join Date: Oct 2009
Posts: 4
I switched to SendAddonMessage() but noticed that it seems to work fine in a party, i.e

Code:
C_ChatInfo.SendAddonMessage(prefix, "test")
is received by addons on other clients in the same party just fine, but:

Code:
C_ChatInfo.SendAddonMessage(prefix, "test", "CHANNEL", channelid)
where channelid is the id of a custom channel I joined on all client with

Code:
JoinChannelByName(channelname)
channelid = GetChannelName(channelname)
seems to NOT propagate to the other clients (i.e. CHAT_MSG_ADDON is not fired).

Is SendAddonMessage somehow limited, too for "CHANNEL" or am I doing something completely wrong?
  Reply With Quote