This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
In ChatThrottleLib:Despool(Prio), there is a check for lowerDest == "raid" and not UnitInRaid("player") which will prevent the sending of the message if the destination is "RAID" but the player isn't in a raid.
ChatThrottleLib:Despool(Prio)
lowerDest == "raid" and not UnitInRaid("player")
However, "RAID" is a valid destination when only in a party, and will simply send to the party. The check should read lowerDest == "raid" and not UnitInRaid("player") and not UnitInParty("player") for correct functionality.
lowerDest == "raid" and not UnitInRaid("player") and not UnitInParty("player")
To post a comment, please login or register a new account.