Remove 's from potential pet owner

This commit is contained in:
Flamanis 2024-07-18 11:14:34 -05:00 committed by andrew6180
parent e33102567b
commit d0b1c5afb9

View file

@ -213,6 +213,7 @@ end
else
for playerName in actorName:gmatch("([^%s']+)") do
playerName = playerName:gsub(",", "")
playerName = playerName:gsub("'s$", "")
local playerIsOnRaidCache = currentCombat.raid_roster[playerName]
if (playerIsOnRaidCache) then
ownerGUID = UnitGUID(playerName)