from retail

This commit is contained in:
NoM0Re
2025-01-06 19:47:37 +01:00
parent 873748218a
commit 7a185106f2
111 changed files with 359 additions and 195 deletions
+16 -1
View File
@@ -1,4 +1,4 @@
if not WeakAuras.IsCorrectVersion() or not WeakAuras.IsLibsOK() then return end
if not WeakAuras.IsLibsOK() then return end
local AddonName, Private = ...
local WeakAuras = WeakAuras;
@@ -1168,6 +1168,18 @@ Private.combatlog_raid_mark_check_type = {
L["Any"]
}
Private.combatlog_raidFlags = {
[0] = 0,
[1] = 1,
[2] = 2,
[4] = 3,
[8] = 4,
[16] = 5,
[32] = 6,
[64] = 7,
[128] = 8,
}
Private.raid_mark_check_type = CopyTable(Private.combatlog_raid_mark_check_type)
Private.raid_mark_check_type[9] = nil
@@ -2620,6 +2632,7 @@ Private.author_option_fields = {
hideReorder = true,
entryNames = nil, -- handled as a special case in code
subOptions = {},
noMerge = false,
}
}
@@ -2753,11 +2766,13 @@ Private.reset_swing_spells = {
[GetSpellInfo(6807)] = true, -- Maul
[GetSpellInfo(20549)] = true, -- War Stomp
[GetSpellInfo(56815)] = true, -- Rune Strike
[GetSpellInfo(5384)] = true, -- Feign Death
}
Private.reset_ranged_swing_spells = {
[GetSpellInfo(2764)] = true, -- Throw
[GetSpellInfo(5019)] = true, -- Shoot Wands
[GetSpellInfo(75)] = true, -- Auto Shot
[GetSpellInfo(5384)] = true, -- Feign Death
}
WeakAuras.StopMotion = {}