from retail

This commit is contained in:
NoM0Re
2025-01-23 18:30:22 +01:00
parent 8dcb62ec81
commit e1e0744ecf
20 changed files with 433 additions and 81 deletions
+6 -3
View File
@@ -4794,7 +4794,9 @@ Private.event_prototypes = {
if triggerWeaponType == "main" then
expirationTime, duration, name, shortenedName, icon, stacks = WeakAuras.GetMHTenchInfo()
else
elseif triggerWeaponType == "off" then
expirationTime, duration, name, shortenedName, icon, stacks = WeakAuras.GetOHTenchInfo()
elseif triggerWeaponType == "ranged" then
expirationTime, duration, name, shortenedName, icon, stacks = WeakAuras.GetOHTenchInfo()
end
@@ -4820,10 +4822,10 @@ Private.event_prototypes = {
return ret:format(trigger.weapon or "main",
trigger.use_enchant and trigger.enchant or "",
showOnActive and trigger.use_stack and tonumber(trigger.stack or 0) or "nil",
showOnActive and trigger.use_stacks and tonumber(trigger.stacks or 0) or "nil",
showOnActive and trigger.use_remaining and tonumber(trigger.remaining or 0) or "nil",
trigger.showOn or "showOnActive",
trigger.stack_operator or "<",
trigger.stacks_operator or "<",
trigger.remaining_operator or "<")
end,
args = {
@@ -4847,6 +4849,7 @@ Private.event_prototypes = {
name = "stacks",
display = L["Stack Count"],
type = "number",
conditionType = "number",
test = "true",
store = true
},