Files
wow-weakauras/Complete Projects/Legion/Full House.lua
2024-08-24 22:43:07 +02:00

11 lines
359 B
Lua

function()
local output = ""
for i = 1, 40 do
local name = UnitName("nameplate" .. i)
if name == "Cult Fanatic" or name == "Cult Adherent" or name == "Deformed Fanatic" or name == "Reanimated Fanatic" or name == "Reanimated Adherent" then
output = output .. name .. "\n"
end
end
return output
end