This commit is contained in:
Charles 2001-06-01 16:30:37 +00:00
parent 61308f18f6
commit 1ed6b3c05f
19 changed files with 60 additions and 13 deletions

View file

@ -96,6 +96,7 @@ void CNpcFireballHazard::processMovement( int _frames )
m_isActive = false;
m_timerActive = true;
m_timer = ( m_respawnRate - 1 ) * GameState::getOneSecondInFrames();
CSoundMediator::playSfx( CSoundMediator::SFX_HAZARD__FIREBALL_LAND );
return;
}
@ -114,5 +115,7 @@ void CNpcFireballHazard::processTimer( int _frames )
{
m_timerActive = false;
m_isActive = true;
CSoundMediator::playSfx( CSoundMediator::SFX_HAZARD__FIREBALL_LAUNCH );
}
}