[11872] Fix caster of triggered spell of 44883 - seems to be unique combination

Signed-off-by: Schmoozerd <schmoozerd@scriptdev2.com>
This commit is contained in:
Schmoozerd 2011-12-21 23:37:11 +01:00
parent 4989b48ffd
commit 66167150bd
2 changed files with 7 additions and 1 deletions

View file

@ -1936,6 +1936,12 @@ void Aura::TriggerSpell()
caster->CastSpell(triggerTarget, trigger_spell_id, true, NULL, this);
return;
}
case 44883: // Encapsulate
{
// Self cast spell, hence overwrite caster (only channeled spell where the triggered spell deals dmg to SELF)
triggerCaster = triggerTarget;
break;
}
case 53563: // Beacon of Light
// original caster must be target (beacon)
target->CastSpell(target, trigger_spell_id, true, NULL, this, target->GetObjectGuid());

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "11871"
#define REVISION_NR "11872"
#endif // __REVISION_NR_H__