diff --git a/code/datums/components/chasm.dm b/code/datums/components/chasm.dm index 1ecd8112..3d854a76 100644 --- a/code/datums/components/chasm.dm +++ b/code/datums/components/chasm.dm @@ -117,13 +117,10 @@ L.Stun(200) L.resting = TRUE if(L.client && check_rights_for(L.client, R_FUN)) - if(prob(50)) - playsound(AM, 'hyperstation/sound/misc/yodadeath.ogg', 100, 0) - else - playsound(AM, 'hyperstation/sound/misc/fallingthroughclouds.ogg', 100, 0) + playsound(AM, pick('hyperstation/sound/misc/yodadeath.ogg', 'hyperstation/sound/misc/fallingthroughclouds.ogg', 'hyperstation/sound/misc/goofy.ogg', 'hyperstation/sound/misc/wilhelm.ogg'), 100, 0) else if(prob(5)) - playsound(AM, 'hyperstation/sound/misc/fallingthroughclouds.ogg', 100, 0) + playsound(AM, pick('hyperstation/sound/misc/yodadeath.ogg', 'hyperstation/sound/misc/fallingthroughclouds.ogg', 'hyperstation/sound/misc/goofy.ogg', 'hyperstation/sound/misc/wilhelm.ogg'), 100, 0) var/oldtransform = AM.transform var/oldcolor = AM.color diff --git a/hyperstation/sound/misc/goofy.ogg b/hyperstation/sound/misc/goofy.ogg new file mode 100644 index 00000000..b1dd596b Binary files /dev/null and b/hyperstation/sound/misc/goofy.ogg differ diff --git a/hyperstation/sound/misc/wilhelm.ogg b/hyperstation/sound/misc/wilhelm.ogg new file mode 100644 index 00000000..80f7e118 Binary files /dev/null and b/hyperstation/sound/misc/wilhelm.ogg differ