Skip to content

Commit

Permalink
work around annoying core bug where starting a timer of 0 uses self.t…
Browse files Browse the repository at this point in the history
…imer instead. But that annoying bug has to stay since over a decade worth of mods has assumed that to be valid
  • Loading branch information
MysticalOS committed Dec 14, 2024
1 parent 98f0702 commit c760216
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DBM-Party-WarWithin/ArakaraCityofEchoes/Anubzekt.lua
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,14 @@ local allTimers = {
--Impale
[435012] = {4.8, 12.2, 4.6},--Includes the Burrow Charge Impale
--Infestation
[433740] = {0, 10.0, 10.8},--Can queue up to 13, usually 3rd cast is 12.2 but can also be lower
[433740] = {0.000001, 10.0, 10.8},--Can queue up to 13, usually 3rd cast is 12.2 but can also be lower
},
--2nd set and beyond
[2] = {
--Impale
[435012] = {5.3, 14.7, 4.6, 14.5},--Includes the Burrow Charge Impale
--Infestation
[433740] = {0, 10.9, 10.8, 10.8},--Can queue up to 13, usually 3rd cast is 12.2 but can also be lower
[433740] = {0.000001, 10.9, 10.8, 10.8},--Can queue up to 13, usually 3rd cast is 12.2 but can also be lower
}
}

Expand Down

0 comments on commit c760216

Please sign in to comment.