mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 16:37:01 +00:00
[7783] Fixed Night Elf death whisp form.
Signed-off-by: ApoC <apoc@nymfe.net>
This commit is contained in:
parent
952474f22d
commit
b7417440df
2 changed files with 6 additions and 1 deletions
|
|
@ -1175,6 +1175,11 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons
|
||||||
(spellInfo_2->Id == 52950 && spellInfo_1->Id == 52707) )
|
(spellInfo_2->Id == 52950 && spellInfo_1->Id == 52707) )
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
// Regular and Night Elf Ghost
|
||||||
|
if( (spellInfo_1->Id == 8326 && spellInfo_2->Id == 20584) ||
|
||||||
|
(spellInfo_2->Id == 8326 && spellInfo_1->Id == 20584) )
|
||||||
|
return false;
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case SPELLFAMILY_WARRIOR:
|
case SPELLFAMILY_WARRIOR:
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "7782"
|
#define REVISION_NR "7783"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue