(fix/BT2) better Boss detection pattern

This commit is contained in:
NoM0Re
2025-07-09 22:28:56 +02:00
parent 78feb37c38
commit 0a04322b5a
+1 -1
View File
@@ -153,7 +153,7 @@ local function IsCasterPlayer(unit)
end
local function IsBossDebuff(unit)
return unit and unit:match("^boss%d+$") or false
return unit and unit:match("^boss%d*$") or false
end
local function GetOrCreateSubTable(base, next, ...)