Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
VuhDo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
129
Issues
129
List
Boards
Labels
Service Desk
Milestones
Merge Requests
3
Merge Requests
3
Operations
Operations
Environments
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
VuhDo
VuhDo
Commits
9f45927b
Commit
9f45927b
authored
Jan 30, 2021
by
Ivaria
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed redundant profile reloading on talent change
parent
ae3f9239
Changes
2
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
VuhDoEventHandler.lua
VuhDoEventHandler.lua
+2
-2
changelog.txt
changelog.txt
+1
-0
No files found.
VuhDoEventHandler.lua
View file @
9f45927b
...
...
@@ -697,8 +697,8 @@ function VUHDO_OnEvent(_, anEvent, anArg1, anArg2, anArg3, anArg4, anArg5, anArg
local
tBestProfile
=
VUHDO_getBestProfileAfterSpecChange
();
-- event sometimes fires multiple times so we must de-dupe
if
(
VUHDO_SPEC_LAYOUTS
[
"selected"
]
~=
VUHDO_SPEC_LAYOUTS
[
tSpecNum
]
)
or
(
VUHDO_CONFIG
[
"CURRENT_PROFILE"
]
~=
tBestProfile
)
then
if
(
not
VUHDO_strempty
(
VUHDO_SPEC_LAYOUTS
[
tSpecNum
])
and
(
VUHDO_SPEC_LAYOUTS
[
"selected"
]
~=
VUHDO_SPEC_LAYOUTS
[
tSpecNum
])
)
or
(
not
VUHDO_strempty
(
tBestProfile
)
and
(
VUHDO_CONFIG
[
"CURRENT_PROFILE"
]
~=
tBestProfile
)
)
then
VUHDO_activateSpecc
(
tSpecNum
);
end
end
...
...
changelog.txt
View file @
9f45927b
...
...
@@ -13,6 +13,7 @@ Bugfixes:
-- Fixed error when slash command had zero arguments
-- Fixed class name text for classless units (defaults to creature type)
-- Fixed error on target switch in combat with show class name enabled
-- Fixed redundant profile reloading on talent change
Improvements:
...
...
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