Skip to content

Commit

Permalink
Ovinax: Fix missing last egg timer
Browse files Browse the repository at this point in the history
  • Loading branch information
Justw8 committed Sep 20, 2024
1 parent 0194178 commit 7fc66d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NerubarPalace/Ovinax.lua
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ do
self:Bar(args.spellId, 1.5 + debuffDuration, CL.count:format(CL.adds, experimentalDosageCount)) -- 1.5s Cast + debuffDuration
experimentalDosageCount = experimentalDosageCount + 1

if experimentalDosageCount < 9 and experimentalDosageCount % 3 ~= 1 then -- No more than 9, starting every 3rd on Ingest Black Blood
if experimentalDosageCount < 10 and experimentalDosageCount % 3 ~= 1 then -- No more than 9, starting every 3rd on Ingest Black Blood
self:Bar(args.spellId, 50.0, CL.count:format(L.experimental_dosage, experimentalDosageCount))
end

Expand Down

0 comments on commit 7fc66d6

Please sign in to comment.