diff --git a/source/funkin/play/song/Song.hx b/source/funkin/play/song/Song.hx index 20d2f75a4c7..37a1834f0a2 100644 --- a/source/funkin/play/song/Song.hx +++ b/source/funkin/play/song/Song.hx @@ -955,12 +955,14 @@ class SongDifficulty // Add player vocals. for (playerVoice in playerVoiceList) { + if (!Assets.exists(playerVoice)) continue; result.addPlayerVoice(FunkinSound.load(playerVoice)); } // Add opponent vocals. for (opponentVoice in opponentVoiceList) { + if (!Assets.exists(opponentVoice)) continue; result.addOpponentVoice(FunkinSound.load(opponentVoice)); }