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
a8431998
Commit
a8431998
authored
8 years ago
by
Ivaria
Browse files
Options
Download
Email Patches
Plain Diff
Fixed Priest 'Clarity of Will' maximum shield absorption amount (2 * initial cast amount)
parent
c953465f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
3 deletions
+28
-3
VuhDo.toc
VuhDo.toc
+1
-1
VuhDoOptions/VuhDoOptions.toc
VuhDoOptions/VuhDoOptions.toc
+1
-1
VuhDoShieldAbsorb.lua
VuhDoShieldAbsorb.lua
+3
-1
changelog.txt
changelog.txt
+23
-0
No files found.
VuhDo.toc
View file @
a8431998
## Interface: 70100
## Title: VuhDo ['vu:du:]
## Author: Iza@Gilneas, humfras, Ivaria@Hyjal
## Version: 3.8
0
## Version: 3.8
1
## 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.
VuhDoOptions/VuhDoOptions.toc
View file @
a8431998
## Interface: 70100
## Title: VuhDo ['vu:du:] - Options
## Author: Iza@Gilneas, humfras, Ivaria@Hyjal
## Version: 3.8
0
## Version: 3.8
1
## Notes: VuhDo Options
## SavedVariables: VUHDO
_
OPTIONS
_
SETTINGS
## SavedVariablesPerCharacter: VUHDO
_
GLOBAL
_
ICONS, VUHDO
_
GI
_
SCAN
_
IDX
...
...
This diff is collapsed.
Click to expand it.
VuhDoShieldAbsorb.lua
View file @
a8431998
...
...
@@ -20,7 +20,6 @@ local VUHDO_SHIELDS = {
--
local
VUHDO_PUMP_SHIELDS
=
{
[
VUHDO_SPELL_ID
.
CLARITY_OF_WILL
]
=
0
.
75
,
}
...
...
@@ -113,6 +112,9 @@ local function VUHDO_initShieldValue(aUnit, aShieldName, anAmount, aDuration)
if
sIsPumpAegis
and
VUHDO_PUMP_SHIELDS
[
aShieldName
]
then
VUHDO_SHIELD_SIZE
[
aUnit
][
aShieldName
]
=
VUHDO_RAID
[
"player"
][
"healthmax"
]
*
VUHDO_PUMP_SHIELDS
[
aShieldName
];
elseif
aShieldName
==
VUHDO_SPELL_ID
.
CLARITY_OF_WILL
then
-- as of patch 7.0 Priest CoW is capped at twice the initial cast amount
VUHDO_SHIELD_SIZE
[
aUnit
][
aShieldName
]
=
anAmount
*
2
;
else
VUHDO_SHIELD_SIZE
[
aUnit
][
aShieldName
]
=
anAmount
;
end
...
...
This diff is collapsed.
Click to expand it.
changelog.txt
View file @
a8431998
Version 3.81
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 Priest 'Clarity of Will' maximum shield absorption amount
Improvements:
--------------------------------------------------------------
Version 3.80
...
...
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