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
Jundarer
VuhDo
Commits
184b801c
Commit
184b801c
authored
10 years ago
by
Ivaria
Browse files
Options
Download
Email Patches
Plain Diff
Really fixed Cluster Builder calling methods on forbidden frames
parent
70917a70
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
3 deletions
+10
-3
VuhDoClusterBuilder.lua
VuhDoClusterBuilder.lua
+9
-3
changelog.txt
changelog.txt
+1
-0
No files found.
VuhDoClusterBuilder.lua
View file @
184b801c
...
...
@@ -202,11 +202,17 @@ local VuhDoDummyStub = {
function
VUHDO_updateAllClusters
()
-- @UGLY Carbonite workaround
local
tFocusFrame
=
GetMouseFocus
()
or
VuhDoDummyStub
;
-- check if our mouse focus frame is forbidden before calling any methods on it
local
tIsFocusFrameForbidden
=
(
GetMouseFocus
()
or
VuhDoDummyStub
):
IsForbidden
();
if
tFocusFrame
:
IsForbidden
()
then
return
;
elseif
not
tFocusFrame
:
GetName
()
then
return
;
end
if
WorldMapFrame
:
IsShown
()
or
not
(
not
tIsFocusFrameForbidden
and
(
GetMouseFocus
()
or
VuhDoDummyStub
):
GetName
())
then
-- @UGLY Carbonite workaround
if
WorldMapFrame
:
IsShown
()
then
return
;
end
...
...
This diff is collapsed.
Click to expand it.
changelog.txt
View file @
184b801c
...
...
@@ -16,6 +16,7 @@ Known issues:
Bugfixes:
-- Fixed floating point number comparison when closing/canceling VuhDo Options
-- Fixed error speech sound playback during auto-trigger of trinkets and spells
-- Really fixed Cluster Builder calling methods on forbidden frames
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