I believe its a problem of channel handling by the server, probably addon channel is bugged at server-side. Need to rework some code of the Jamba addon at the files JambaCommunications.lua and JambaMessage.lua.
tip: Addon does work when your toons not in one group. Just try to "send settings" from a character that not in group and all other toons will receive it. It happens because if player not in group Jamba using different method to send messages - it sends them to rest toons through addon whispering (u will never see that in your chat it's addon channel)
the only way for us to fix it without bothering developers of the server its to replace calling of methods used by jamba when characters in group (send messaged to party chat by addon channel) to the methods that they using when they aren't in group (whispering by addon channel)
temponary fix is to replace
Code:
local canSend = false
to
Code:
local canSend = true
in the file JambaCommunications.lua
then it will start to also use whispering method because of a code that laying below
Code:
if canSend == true then
AJM:SendCommMessage(
AJM.COMMAND_PREFIX,
message,
AJM.COMMUNICATION_WHISPER,
characterName,
AJM.COMMUNICATION_PRIORITY_ALERT
)
end
it will slowdown settings sharing and probably some other things when all your toons are in same group but it will definitely work (slowdown depends on the number of members in your team - it will send a whispers to all members instead of one message into the party/raid chat)