This commit is contained in:
Lasercar 2025-04-05 05:25:37 +10:00 committed by GitHub
commit 23d5948964
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1923,7 +1923,13 @@ class FreeplayState extends MusicBeatSubState
}
// Visual and audio effects.
FunkinSound.playOnce(Paths.sound('confirmMenu'));
if (currentCharacterId == 'pico')
{
// Gunshot SFX when confirming a song as pico, why not?
FunkinSound.playOnce(Paths.soundRandom('shot', 1, 4, 'weekend1'));
}
else
FunkinSound.playOnce(Paths.sound('confirmMenu'));
if (dj != null) dj.confirm();
grpCapsules.members[curSelected].forcePosition();