finish UnitInRaid("player") → IsInRaid() sweep

Four more sites: GetUnbuffedRoster + SendChatMessageWide in api.lua,
the loot menu's inRaid local, and the raid module's early-return
guard. Same intent, named helper.
This commit is contained in:
Brues
2026-06-27 18:57:21 -05:00
parent fc75e091a4
commit 28de6fd835
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -208,7 +208,7 @@ function pfUI.api.GetUnbuffedRoster(name)
end
end
if UnitInRaid("player") then
if IsInRaid() then
for i=1,40 do check("raid"..i) end
else
check("player")
@@ -485,7 +485,7 @@ end
-- 'msg' [string] the message to send
function pfUI.api.SendChatMessageWide(msg)
local channel = "SAY"
if UnitInRaid("player") then
if IsInRaid() then
if ( IsRaidLeader() or IsRaidOfficer() ) then
channel = "RAID_WARNING"
else