diff --git a/src/k_kart.c b/src/k_kart.c index 45f2b906f..cc8c044d9 100644 --- a/src/k_kart.c +++ b/src/k_kart.c @@ -9867,6 +9867,12 @@ void K_KartUpdatePosition(player_t *player) if (position != oldposition) // Changed places? { + if (position < oldposition && P_IsDisplayPlayer(player) == true) + { + // Play sound when getting closer to 1st. + S_StartSound(player->mo, sfx_mbs41); + } + player->positiondelay = POS_DELAY_TIME + 4; // Position number growth }