[9232] Replace list bool fields with exclusive true values by subtype field in Creature.

Use it in recently added code instead dynamic_cast use.
This commit is contained in:
VladimirMangos 2010-01-21 22:20:50 +03:00
parent 6653539a5e
commit 797dd6d931
9 changed files with 29 additions and 21 deletions

View file

@ -22,7 +22,7 @@
#include "CreatureAI.h"
TemporarySummon::TemporarySummon( uint64 summoner ) :
Creature(), m_type(TEMPSUMMON_TIMED_OR_CORPSE_DESPAWN), m_timer(0), m_lifetime(0), m_summoner(summoner)
Creature(CREATURE_SUBTYPE_TEMPORARY_SUMMON), m_type(TEMPSUMMON_TIMED_OR_CORPSE_DESPAWN), m_timer(0), m_lifetime(0), m_summoner(summoner)
{
}