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
Krazyito
VuhDo
Commits
70917a70
Commit
70917a70
authored
10 years ago
by
Ivaria
Browse files
Options
Download
Email Patches
Plain Diff
Fixed error speech sound playback during auto-trigger of trinkets and spells
parent
b4601620
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
4 deletions
+5
-4
VuhDoEventHandler.lua
VuhDoEventHandler.lua
+1
-1
VuhDoMacroFactory.lua
VuhDoMacroFactory.lua
+3
-3
changelog.txt
changelog.txt
+1
-0
No files found.
VuhDoEventHandler.lua
View file @
70917a70
...
...
@@ -575,7 +575,7 @@ function VUHDO_OnEvent(_, anEvent, anArg1, anArg2, anArg3, anArg4, anArg5, anArg
if
VUHDO_RAID
then
VUHDO_readyCheckEnds
();
end
elseif
"CVAR_UPDATE"
==
anEvent
then
VUHDO_IS_SFX_ENABLED
=
tonumber
(
GetCVar
(
"Sound_Enable
SFX
"
))
==
1
;
VUHDO_IS_SFX_ENABLED
=
tonumber
(
GetCVar
(
"Sound_Enable
ErrorSpeech
"
))
==
1
;
if
VUHDO_VARIABLES_LOADED
then
VUHDO_reloadUI
(
false
);
end
elseif
"INSPECT_READY"
==
anEvent
then
...
...
This diff is collapsed.
Click to expand it.
VuhDoMacroFactory.lua
View file @
70917a70
...
...
@@ -98,7 +98,7 @@ local function VUHDO_getFireText(anAction)
if
not
sFireText
then
sFireText
=
""
;
if
VUHDO_IS_SFX_ENABLED
then
sFireText
=
sFireText
..
"/console Sound_Enable
SFX
0\n"
;
sFireText
=
sFireText
..
"/console Sound_Enable
ErrorSpeech
0\n"
;
end
tModi
=
VUHDO_SPELL_CONFIG
[
"IS_FIRE_OUT_FIGHT"
]
and
" "
or
" [combat] "
;
...
...
@@ -122,7 +122,7 @@ local function VUHDO_getFireText(anAction)
-- Ton wieder an
if
VUHDO_IS_SFX_ENABLED
then
sFireText
=
sFireText
..
"/console Sound_Enable
SFX
1\n"
;
sFireText
=
sFireText
..
"/console Sound_Enable
ErrorSpeech
1\n"
;
end
sFireText
=
sFireText
..
"/run UIErrorsFrame:Clear()\n"
;
...
...
@@ -439,7 +439,7 @@ function VUHDO_initKeyboardMacros()
local
tKey1
,
tKey2
;
local
tBindPrefix
=
"VUHDO_KEY_ASSIGN_"
;
VUHDO_IS_SFX_ENABLED
=
tonumber
(
GetCVar
(
"Sound_Enable
SFX
"
))
==
1
;
VUHDO_IS_SFX_ENABLED
=
tonumber
(
GetCVar
(
"Sound_Enable
ErrorSpeech
"
))
==
1
;
if
not
VUHDO_SPELLS_KEYBOARD
then
return
;
end
...
...
This diff is collapsed.
Click to expand it.
changelog.txt
View file @
70917a70
...
...
@@ -15,6 +15,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
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