mirror of
https://github.com/mangosfour/server.git
synced 2025-12-28 13:37:13 +00:00
[9826] Fix spell 38736
Signed-off-by: Lightguard <Lightguard@tauri.hu>
This commit is contained in:
parent
049951a988
commit
c5ed3978bc
6 changed files with 16 additions and 3 deletions
|
|
@ -2175,6 +2175,13 @@ void Aura::TriggerSpell()
|
|||
case 33525:
|
||||
target->CastSpell(target, trigger_spell_id, true, NULL, this, casterGUID);
|
||||
return;
|
||||
// Rod of Purification - for quest 10839 (Veil Skith: Darkstone of Terokk)
|
||||
case 38736:
|
||||
{
|
||||
if(Unit* caster = GetCaster())
|
||||
caster->CastSpell(target, trigger_spell_id, true, NULL, this);
|
||||
return;
|
||||
}
|
||||
// Beacon of Light
|
||||
case 53563:
|
||||
// original caster must be target (beacon)
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "9825"
|
||||
#define REVISION_NR "9826"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#ifndef __REVISION_SQL_H__
|
||||
#define __REVISION_SQL_H__
|
||||
#define REVISION_DB_CHARACTERS "required_9767_03_characters_characters"
|
||||
#define REVISION_DB_MANGOS "required_9803_01_mangos_spell_bonus_data"
|
||||
#define REVISION_DB_MANGOS "required_9826_01_mangos_spell_script_target"
|
||||
#define REVISION_DB_REALMD "required_9748_01_realmd_realmlist"
|
||||
#endif // __REVISION_SQL_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue