[12215] Add exception to unneeded check for spell 30009

This commit is contained in:
Schmoozerd 2012-09-12 23:27:33 +02:00 committed by Antz
parent c1890ddb44
commit f710cc3c24
2 changed files with 3 additions and 3 deletions

View file

@ -7265,8 +7265,8 @@ bool Spell::CheckTargetCreatureType(Unit* target) const
spellCreatureTargetMask = 0x7FF; spellCreatureTargetMask = 0x7FF;
} }
// Dismiss Pet and Taming Lesson skipped // Dismiss Pet and Taming Lesson and Control Roskipped
if (m_spellInfo->Id == 2641 || m_spellInfo->Id == 23356) if (m_spellInfo->Id == 2641 || m_spellInfo->Id == 23356 || m_spellInfo->Id == 30009)
spellCreatureTargetMask = 0; spellCreatureTargetMask = 0;
if (spellCreatureTargetMask) if (spellCreatureTargetMask)

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "12214" #define REVISION_NR "12215"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__