Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Simon Van Casteren
VuhDo
Commits
4b78749d
Commit
4b78749d
authored
8 years ago
by
Ivaria
Browse files
Options
Download
Email Patches
Plain Diff
Fixed HoT clock start time rounding error
parent
b42e8369
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
VuhDoBarCustomizerHots.lua
VuhDoBarCustomizerHots.lua
+1
-1
changelog.txt
changelog.txt
+1
-0
No files found.
VuhDoBarCustomizerHots.lua
View file @
4b78749d
...
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
changelog.txt
View file @
4b78749d
...
...
@@ -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:
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment