Commit 4b78749d authored by Ivaria's avatar Ivaria
Browse files

Fixed HoT clock start time rounding error

parent b42e8369
......@@ -253,7 +253,7 @@ local function VUHDO_customizeHotIcons(aButton, aHotName, aRest, aTimes, anIcon,
end
tTimer:SetText(tDuration);
tStarted = floor(10 * (GetTime() - aDuration + aRest + 0.5)) * 0.1;
tStarted = floor(10 * (GetTime() - aDuration + aRest) + 0.5) * 0.1;
if tClock:GetAlpha() == 0 or (tClock:GetAttribute("started") or tStarted) ~= tStarted then
tClock:SetAlpha(1);
tClock:SetCooldown(tStarted, aDuration);
......
......@@ -15,6 +15,7 @@ Known issues:
Bugfixes:
-- Priest 'Purge the Wicked' can be directly assigned as a spell bind again
-- Fixed HoT clock start time rounding error
Improvements:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment