mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 13:37:05 +00:00
[8366] Prevent double heal effect casting with triggering talent 31876 and ranks.
Cast only at client casted judgements (and ignore triggered additional affects from seals) Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
799dc0a693
commit
83a95a2a5a
2 changed files with 5 additions and 1 deletions
|
|
@ -5568,6 +5568,10 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, Aura* triggeredByAu
|
||||||
case 31876:
|
case 31876:
|
||||||
case 31877:
|
case 31877:
|
||||||
case 31878:
|
case 31878:
|
||||||
|
// triggered only at casted Judgement spells, not at additional Judgement effects
|
||||||
|
if(!procSpell || procSpell->Category != 1210)
|
||||||
|
return;
|
||||||
|
|
||||||
target = this;
|
target = this;
|
||||||
triggered_spell_id = 31930;
|
triggered_spell_id = 31930;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "8365"
|
#define REVISION_NR "8366"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue