This commit is contained in:
Charles 2001-05-10 19:27:57 +00:00
parent 3ea8916a41
commit 0112cd13e2
10 changed files with 112 additions and 25 deletions

View file

@ -40,7 +40,8 @@ void CNpcFireballHazard::init()
m_extension = 0;
m_velocity = 40;
m_timer = GameState::getOneSecondInFrames() * 3;
m_respawnRate = 4;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@ -75,7 +76,7 @@ void CNpcFireballHazard::processMovement( int _frames )
m_extension = 0;
m_isActive = false;
m_timerActive = true;
m_timer = 3 * GameState::getOneSecondInFrames();
m_timer = ( m_respawnRate - 1 ) * GameState::getOneSecondInFrames();
return;
}