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
omicron
VuhDo
Commits
1113f698
Commit
1113f698
authored
6 years ago
by
Ivaria
Browse files
Options
Download
Email Patches
Plain Diff
Fixed BuffWatch tracking of auras. UNIT_SPELLCAST_* events no longer pass spell name or rank.
parent
d62df9a6
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
10 deletions
+11
-10
VuhDoBuffWatch.lua
VuhDoBuffWatch.lua
+2
-3
VuhDoEventHandler.lua
VuhDoEventHandler.lua
+1
-0
VuhDoSpellEventHandler.lua
VuhDoSpellEventHandler.lua
+7
-3
changelog.txt
changelog.txt
+1
-4
No files found.
VuhDoBuffWatch.lua
View file @
1113f698
...
...
@@ -45,7 +45,6 @@ local VUHDO_isInBattleground;
local
VUHDO_brightenTextColor
;
local
VUHDO_isConfigDemoUsers
;
local
UnitBuff
=
UnitBuff
;
local
GetTotemInfo
=
GetTotemInfo
;
local
table
=
table
;
local
strsub
=
strsub
;
...
...
@@ -497,7 +496,7 @@ local function VUHDO_getMissingBuffs(aBuffInfo, someUnits, aCategSpec)
tInRange
=
(
IsSpellInRange
(
aBuffInfo
[
1
],
tUnit
)
==
1
)
or
tInfo
[
"baseRange"
];
tIsAvailable
=
tInfo
[
"connected"
]
and
not
tInfo
[
"dead"
];
_
,
tTexture
,
tCount
,
_
,
tStart
,
tRest
,
_
,
_
=
UnitBuff
(
tUnit
,
aBuffInfo
[
1
]);
_
,
tTexture
,
tCount
,
_
,
tStart
,
tRest
,
_
,
_
=
VUHDO_unitAura
(
tUnit
,
aBuffInfo
[
1
]);
if
not
tTexture
then
for
tCnt
=
3
,
10
do
...
...
@@ -505,7 +504,7 @@ local function VUHDO_getMissingBuffs(aBuffInfo, someUnits, aCategSpec)
if
not
tBuffGroup
then
break
;
end
for
_
,
tSameGroupBuff
in
pairs
(
tBuffGroup
)
do
_
,
tTexture
,
tCount
,
_
,
tStart
,
tRest
,
_
,
_
=
UnitBuff
(
tUnit
,
tSameGroupBuff
);
_
,
tTexture
,
tCount
,
_
,
tStart
,
tRest
,
_
,
_
=
VUHDO_unitAura
(
tUnit
,
tSameGroupBuff
);
if
tTexture
then
break
;
end
end
...
...
This diff is collapsed.
Click to expand it.
VuhDoEventHandler.lua
View file @
1113f698
...
...
@@ -485,6 +485,7 @@ function VUHDO_OnEvent(_, anEvent, anArg1, anArg2, anArg3, anArg4, anArg5, anArg
if
(
VUHDO_RAID
or
tEmptyRaid
)[
anArg1
]
then
VUHDO_spellcastSucceeded
(
anArg1
,
anArg3
);
end
elseif
"UNIT_SPELLCAST_SENT"
==
anEvent
then
-- TODO: Blizz confirmed bug in payload no longer included target (arg4?)
if
VUHDO_VARIABLES_LOADED
then
VUHDO_spellcastSent
(
anArg1
,
anArg2
,
anArg3
);
end
elseif
"UNIT_THREAT_SITUATION_UPDATE"
==
anEvent
then
...
...
This diff is collapsed.
Click to expand it.
VuhDoSpellEventHandler.lua
View file @
1113f698
...
...
@@ -110,10 +110,14 @@ end
local
tTargetUnit
;
local
tCateg
;
local
tSpellName
;
function
VUHDO_spellcastSent
(
aUnit
,
aSpellId
,
aTargetName
)
if
"player"
~=
aUnit
then
return
;
end
function
VUHDO_spellcastSent
(
aUnit
,
aTargetName
,
aSpellId
)
if
"player"
~=
aUnit
then
return
;
end
if
sIsShowGcd
then
VUHDO_initGcd
();
end
if
sIsShowGcd
then
VUHDO_initGcd
();
end
if
aSpellId
then
tSpellName
=
GetSpellInfo
(
aSpellId
);
...
...
This diff is collapsed.
Click to expand it.
changelog.txt
View file @
1113f698
...
...
@@ -7,10 +7,6 @@ Known issues:
-- 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:
...
...
@@ -18,6 +14,7 @@ Bugfixes:
-- UNIT_POWER event is now named UNIT_POWER_UPDATE
-- UnitAura/UnitBuff/UnitDebuff no longer accept spell name or ID
-- UnitAura/UnitBuff/UnitDebuff no longer return spell rank
-- Fixed BuffWatch tracking of auras
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