1. Addon Message Receiving

    dear warmane team,

    i would like to ask if receiving addon messages via party and whisper has been disabled.
    a few days ago i had no problems by receiving addon messages.
    for an example:

    /run SendAddonMessage("myprefix", "mymessage", "WHISPER", "Myname")
    in this case the character named "Myname" does not receive this addon message.
    but if i send a party addon message like this:

    /run SendAddonMessage("myprefix", "mymessage", "PARTY")
    nobody in my party except myself receives this party addon message.

    my script to debug addon messages:

    Code:
    local f = CreateFrame("Frame")
    f:RegisterEvent("CHAT_MSG_ADDON")
    f:SetScript("OnEvent", function(self, event, prefix, text, channel, sender)
       print("Prefix: " .. prefix .. " | Sender: " .. sender .. " | Text: " .. text)
    end)

  2. Yes, this seems to be broken right now. It's unlikely to be intended, so report it in the bug tracker.

    Edit: I have reported it myself.
    Edited: December 4, 2025

  3. This is fixed now. Yay for teamwork.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •