diff --git a/code/datums/components/chasm.dm b/code/datums/components/chasm.dm index 529832e1..1ecd8112 100644 --- a/code/datums/components/chasm.dm +++ b/code/datums/components/chasm.dm @@ -116,7 +116,13 @@ L.notransform = TRUE L.Stun(200) L.resting = TRUE - if(prob(5)) + 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) + + else if(prob(5)) playsound(AM, 'hyperstation/sound/misc/fallingthroughclouds.ogg', 100, 0) var/oldtransform = AM.transform diff --git a/hyperstation/sound/misc/yodadeath.ogg b/hyperstation/sound/misc/yodadeath.ogg new file mode 100644 index 00000000..831d4061 Binary files /dev/null and b/hyperstation/sound/misc/yodadeath.ogg differ