diff options
Diffstat (limited to 'source/Mobs/AggressiveMonster.cpp')
-rw-r--r-- | source/Mobs/AggressiveMonster.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source/Mobs/AggressiveMonster.cpp b/source/Mobs/AggressiveMonster.cpp index eabfb6669..f2e53ce00 100644 --- a/source/Mobs/AggressiveMonster.cpp +++ b/source/Mobs/AggressiveMonster.cpp @@ -11,8 +11,9 @@ -cAggressiveMonster::cAggressiveMonster() - : m_ChaseTime(999999) +cAggressiveMonster::cAggressiveMonster(const AString & a_ConfigName, char a_ProtocolMobType, const AString & a_SoundHurt, const AString & a_SoundDeath) : + super(a_ConfigName, a_ProtocolMobType, a_SoundHurt, a_SoundDeath), + m_ChaseTime(999999) { m_EMPersonality = AGGRESSIVE; } |