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
Luna Nova
VuhDo
Commits
a72c3ef3
Commit
a72c3ef3
authored
10 years ago
by
Ivaria
Browse files
Options
Download
Email Patches
Plain Diff
Fixed cluster builder calling methods on forbidden frames (eg. in-game store)
parent
6d963577
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
VuhDoClusterBuilder.lua
VuhDoClusterBuilder.lua
+5
-1
changelog.txt
changelog.txt
+1
-0
No files found.
VuhDoClusterBuilder.lua
View file @
a72c3ef3
...
...
@@ -200,8 +200,12 @@ local VuhDoDummyStub = {
};
function
VUHDO_updateAllClusters
()
-- check if our mouse focus frame is forbidden before calling any methods on it
local
tIsFocusFrameForbidden
=
(
GetMouseFocus
()
or
VuhDoDummyStub
):
IsForbidden
();
if
WorldMapFrame
:
IsShown
()
or
not
(
GetMouseFocus
()
or
VuhDoDummyStub
):
GetName
()
then
-- @UGLY Carbonite workaround
or
not
(
not
tIsFocusFrameForbidden
and
(
GetMouseFocus
()
or
VuhDoDummyStub
):
GetName
()
)
then
-- @UGLY Carbonite workaround
return
;
end
...
...
This diff is collapsed.
Click to expand it.
changelog.txt
View file @
a72c3ef3
...
...
@@ -18,6 +18,7 @@ Bugfixes:
-- Removed Hunter Rapid Fire from custom debuff list
-- Added all of Mar'gok's variations of Arcane Wrath as default custom debuffs
-- Fixed GCD bar display for Discipline and Shadow Priests
-- Fixed cluster builder calling methods on forbidden frames (eg. in-game store)
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