diff --git a/stepmania/src/Player.cpp b/stepmania/src/Player.cpp index c2f399dc5f..7ad928e5fb 100644 --- a/stepmania/src/Player.cpp +++ b/stepmania/src/Player.cpp @@ -892,7 +892,10 @@ void Player::HandleStep( int col, const RageTimer &tm ) if( score == TNS_HIT_MINE ) { - m_soundMine.Play(); + if( tn.bKeysound ) + m_vKeysounds[tn.iKeysoundIndex].Play(); + else + m_soundMine.Play(); if( m_pLifeMeter ) m_pLifeMeter->ChangeLife( score );