diff --git a/src/player.c b/src/player.c index 462914f..cf56090 100644 --- a/src/player.c +++ b/src/player.c @@ -893,7 +893,8 @@ void player_renderGUI(void) { i = space_canHyperspace(player); if((i != 0) && (i != can_jump)) - player_playSound(snd_jump, 1); + if(!pilot_isFlag(player, PILOT_HYPERSPACE)) + player_playSound(snd_jump, 1); can_jump = i; c = can_jump ? &cConsole : NULL;