Files
wow-weakauras/NewAge/CataAuraBar/CustomOptions.lua
2024-08-24 22:45:28 +02:00

20 lines
477 B
Lua

{
IsOnCooldown = {
type = "bool",
test = function(state, needle)
return state.IsOnCooldown == (needle == 1)
end,
},
IsActive = {
type = "bool",
test = function(state, needle)
return state.IsActive == (needle == 1)
end,
},
IsDebuff = {
type = "bool",
test = function(state, needle)
return state.IsBad == (needle == 1)
end,
},
}