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
70295064
Commit
70295064
authored
8 years ago
by
Ivaria
Browse files
Options
Download
Email Patches
Plain Diff
Fixed an issue where Shaman 'Healing Stream Totem' would not cast
parent
dcb7be41
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
46 additions
and
5 deletions
+46
-5
VuhDo.toc
VuhDo.toc
+1
-1
VuhDoMacroFactory.lua
VuhDoMacroFactory.lua
+23
-3
VuhDoOptions/VuhDoOptions.toc
VuhDoOptions/VuhDoOptions.toc
+1
-1
changelog.txt
changelog.txt
+21
-0
No files found.
VuhDo.toc
View file @
70295064
## Interface: 70100
## Title: VuhDo ['vu:du:]
## Author: Iza@Gilneas, humfras, Ivaria@Hyjal
## Version: 3.7
8
## Version: 3.7
9
## Notes: Raid Frames providing click-heal functionality, buff and debuff control, main tank management and much more
## SavedVariablesPerCharacter: VUHDO
_
CONFIG, VUHDO
_
PANEL
_
SETUP, VUHDO
_
SPELL
_
ASSIGNMENTS, VUHDO
_
HOSTILE
_
SPELL
_
ASSIGNMENTS, VUHDO
_
MM
_
SETTINGS, VUHDO
_
PLAYER
_
TARGETS, VUHDO
_
MAINTANK
_
NAMES, VUHDO
_
BUFF
_
SETTINGS, VUHDO
_
POWER
_
TYPE
_
COLORS, VUHDO
_
SPELLS
_
KEYBOARD, VUHDO
_
SPELL
_
CONFIG, VUHDO
_
BUFF
_
ORDER, VUHDO
_
SPEC
_
LAYOUTS, VUHDO
_
GROUP
_
SIZE, VUHDO
_
RAID, VUHDO
_
INDICATOR
_
CONFIG
## SavedVariables: VUHDO
_
DEFAULT
_
LAYOUT, VUHDO
_
DEFAULT
_
PROFILE, VUHDO
_
PROFILES, VUHDO
_
MANUAL
_
ROLES, VUHDO
_
SPELL
_
LAYOUTS, VUHDO
_
USER
_
CLASS
_
COLORS, VUHDO
_
DEBUFF
_
BLACKLIST, VUHDO
_
BOUQUETS, VUHDO
_
COMBAT
_
LOG
_
TRACE, VUHDO
_
GLOBAL
_
CONFIG, VUHDO
_
DEBUG
...
...
This diff is collapsed.
Click to expand it.
VuhDoMacroFactory.lua
View file @
70295064
...
...
@@ -200,7 +200,17 @@ local function VUHDO_generateTargetMacroText(aTarget, aFriendlyAction, aHostileA
tModiSpell
=
"[noharm,@vuhdo] "
;
end
tFriendText
=
"/use "
..
tModiSpell
..
aFriendlyAction
..
"
\n
"
;
-- Legion introduced an Order Hall follower for Shamans which yields a mission reward
-- This reward is an item ambiguously named 'Healing Stream Totem'
-- Explicitly use '/cast' so that the 'Healing Stream Totem' spell is used instead
if
tLowerFriendly
==
strlower
(
VUHDO_SPELL_ID
.
BUFF_HEALING_STREAM_TOTEM
)
then
tFriendText
=
"/cast "
;
else
tFriendText
=
"/use "
;
end
tFriendText
=
tFriendText
..
tModiSpell
..
aFriendlyAction
..
"
\n
"
;
if
VUHDO_SPELL_CONFIG
[
"IS_AUTO_TARGET"
]
then
tFriendText
=
tFriendText
..
"/tar [@vuhdo]\n"
;
end
...
...
@@ -333,6 +343,7 @@ local tModiSpell;
local
tSpellPost
;
local
tVehicleCond
;
local
tStopText
;
local
tCastText
;
local
function
VUHDO_generateRaidMacroTemplate
(
anAction
,
anIsKeyboard
,
aTarget
,
aPet
)
if
VUHDO_SPELL_CONFIG
[
"IS_CANCEL_CURRENT"
]
then
tStopText
=
"/stopcasting\n"
;
...
...
@@ -350,8 +361,17 @@ local function VUHDO_generateRaidMacroTemplate(anAction, anIsKeyboard, aTarget,
tSpellPost
=
VUHDO_getAutoBattleRezText
(
anIsKeyboard
);
-- Legion introduced an Order Hall follower for Shamans which yields a mission reward
-- This reward is an item ambiguously named 'Healing Stream Totem'
-- Explicitly use '/cast' so that the 'Healing Stream Totem' spell is used instead
if
strlower
(
anAction
)
==
strlower
(
VUHDO_SPELL_ID
.
BUFF_HEALING_STREAM_TOTEM
)
then
tCastText
=
"/cast "
;
else
tCastText
=
"/use "
;
end
if
anIsKeyboard
then
tText
=
tText
..
"/use
["
..
tModiSpell
..
"@mouseover] "
..
anAction
..
"
\n
"
;
tText
=
tText
..
tCastText
..
"
["
..
tModiSpell
..
"@mouseover] "
..
anAction
..
"
\n
"
;
tText
=
tText
..
tSpellPost
;
else
if
aPet
and
VUHDO_SPELL_ID
.
REBIRTH
~=
anAction
then
...
...
@@ -359,7 +379,7 @@ local function VUHDO_generateRaidMacroTemplate(anAction, anIsKeyboard, aTarget,
else
tVehicleCond
=
""
;
end
tText
=
tText
..
"/use
["
..
tModiSpell
..
"nounithasvehicleui,@vuhdo]"
..
tVehicleCond
..
" "
..
anAction
..
"
\n
"
;
tText
=
tText
..
tCastText
..
"
["
..
tModiSpell
..
"nounithasvehicleui,@vuhdo]"
..
tVehicleCond
..
" "
..
anAction
..
"
\n
"
;
tText
=
tText
..
tSpellPost
;
if
aPet
then
tText
=
tText
..
"/tar [unithasvehicleui,@vdpet]\n"
;
...
...
This diff is collapsed.
Click to expand it.
VuhDoOptions/VuhDoOptions.toc
View file @
70295064
## Interface: 70100
## Title: VuhDo ['vu:du:] - Options
## Author: Iza@Gilneas, humfras, Ivaria@Hyjal
## Version: 3.7
8
## Version: 3.7
9
## Notes: VuhDo Options
## SavedVariables: VUHDO
_
OPTIONS
_
SETTINGS
## SavedVariablesPerCharacter: VUHDO
_
GLOBAL
_
ICONS, VUHDO
_
GI
_
SCAN
_
IDX
...
...
This diff is collapsed.
Click to expand it.
changelog.txt
View file @
70295064
Version 3.79
Known issues:
-- Limited support for Class Order Hall Bodyguards
-- Bodyguards can be used in panels when set to target or focus
-- Bodyguards have no unit ID so for now are only partially supported
-- Incoming heal estimation reported is not even close to accurate
-- Bug in Blizzard API UnitGetIncomingHeals() - returns bogus values
-- Patch 7.1 disabled retrieval of unit facing and position in instances
-- This was an intentional breaking change by Blizzard
-- This breaks AOE Advice, Clusters and out-of-range direction arrow
-- At this time there is no way to fix or renable these features
Bugfixes:
-- Fixed an issue where Shaman 'Healing Stream Totem' would not cast
-- Blizzard fixed the font drop shadow offset on their end finally
--------------------------------------------------------------
Version 3.78
...
...
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