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

@ -58,6 +58,7 @@ void CNpcRockShardHazard::processMovement( int _frames )
{
Pos.vx = m_base.vx + ( -3 + ( getRnd() % 7 ) );
Pos.vy = m_base.vy + ( -3 + ( getRnd() % 7 ) );
CSoundMediator::playSfx( CSoundMediator::SFX_HAZARD__STALACTITE_RATTLE );
}
}
else
@ -75,6 +76,7 @@ void CNpcRockShardHazard::processMovement( int _frames )
m_isActive = false;
m_timerActive = true;
m_timer = ( m_respawnRate - 1 ) * GameState::getOneSecondInFrames();
CSoundMediator::playSfx( CSoundMediator::SFX_HAZARD__STALACTITE_LAND );
}
else
{