diff --git a/code/datums/components/chasm.dm b/code/datums/components/chasm.dm index 5cf1c0c3..56c03c7a 100644 --- a/code/datums/components/chasm.dm +++ b/code/datums/components/chasm.dm @@ -115,7 +115,13 @@ L.notransform = TRUE L.Stun(200) L.resting = TRUE - if(prob(5)) + if(L.client?.rights & 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