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
momo
VuhDo
Commits
361860d0
"README.md" did not exist on "bf3029f9f7347120871070e8f25d2b8e5c3b2b80"
Commit
361860d0
authored
6 years ago
by
Ivaria
Browse files
Options
Download
Email Patches
Plain Diff
Fixed Holy Priest 'Trail of Light' tracker
parent
839cb3c8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
18 deletions
+19
-18
VuhDoSpellTrace.lua
VuhDoSpellTrace.lua
+18
-18
changelog.txt
changelog.txt
+1
-0
No files found.
VuhDoSpellTrace.lua
View file @
361860d0
...
...
@@ -92,27 +92,27 @@ function VUHDO_parseCombatLogSpellTrace(aMessage, aSrcGuid, aDstGuid, aSpellName
-- special tracking for Holy Priest "Trail of Light"
if
sShowTrailOfLight
and
sIsPlayerKnowsTrailOfLight
and
aSrcGuid
==
VUHDO_PLAYER_GUID
and
aSpellName
==
VUHDO_SPELL_ID
.
FLASH_HEAL
then
tinsert
(
VUHDO_SPELL_TRACE_TRAIL_OF_LIGHT
,
{
anAmount
,
aDstGuid
}
);
local
FlashHeal1
=
VUHDO_SPELL_TRACE_TRAIL_OF_LIGHT
[
1
];
local
FlashHeal2
=
VUHDO_SPELL_TRACE_TRAIL_OF_LIGHT
[
2
];
if
FlashHeal1
and
FlashHeal2
then
if
not
VUHDO_SPELL_TRACE_TRAIL_OF_LIGHT
[
1
]
or
(
VUHDO_SPELL_TRACE_TRAIL_OF_LIGHT
[
1
]
and
VUHDO_SPELL_TRACE_TRAIL_OF_LIGHT
[
1
][
2
]
~=
aDstGuid
)
then
tinsert
(
VUHDO_SPELL_TRACE_TRAIL_OF_LIGHT
,
{
anAmount
,
aDstGuid
}
);
end
local
flashHeal1
=
VUHDO_SPELL_TRACE_TRAIL_OF_LIGHT
[
1
];
local
flashHeal2
=
VUHDO_SPELL_TRACE_TRAIL_OF_LIGHT
[
2
];
if
flashHeal1
and
flashHeal2
then
local
tPreviousPlayerTrailOfLight
=
sCurrentPlayerTrailOfLight
;
if
FlashHeal1
[
1
]
<
FlashHeal2
[
1
]
then
sCurrentPlayerTrailOfLight
=
FlashHeal1
[
2
];
else
sCurrentPlayerTrailOfLight
=
FlashHeal2
[
2
];
end
sCurrentPlayerTrailOfLight
=
flashHeal1
[
2
];
twipe
(
VUHDO_SPELL_TRACE_TRAIL_OF_LIGHT
);
tremove
(
VUHDO_SPELL_TRACE_TRAIL_OF_LIGHT
,
2
);
VUHDO_SPELL_TRACE_TRAIL_OF_LIGHT
[
1
]
=
flashHeal2
;
if
VUHDO_RAID_GUIDS
[
sCurrentPlayerTrailOfLight
]
then
VUHDO_updateBouquetsForEvent
(
...
...
This diff is collapsed.
Click to expand it.
changelog.txt
View file @
361860d0
...
...
@@ -14,6 +14,7 @@ Bugfixes:
-- Fixed mana bar display after specialization activation
-- Fixed apostrophe issue for Priest 'Shadow Mend' in French language
-- Fixed assignment of remapped spells when dragging from spell book
-- Fixed Holy Priest 'Trail of Light' tracker
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