diff --git a/code/game/objects/structures/ladders.dm b/code/game/objects/structures/ladders.dm index f321498b..1de10c82 100644 --- a/code/game/objects/structures/ladders.dm +++ b/code/game/objects/structures/ladders.dm @@ -77,6 +77,8 @@ if(!is_ghost) show_fluff_message(going_up, user) ladder.add_fingerprint(user) + if (prob(2)) + SEND_SOUND(user, pick('hyperstation/sound/misc/what_a_thrill.ogg','hyperstation/sound/misc/what_a_thrill2.ogg',)) var/turf/T = get_turf(ladder) var/atom/movable/AM diff --git a/hyperstation/sound/misc/what_a_thrill.ogg b/hyperstation/sound/misc/what_a_thrill.ogg new file mode 100644 index 00000000..be330a21 Binary files /dev/null and b/hyperstation/sound/misc/what_a_thrill.ogg differ diff --git a/hyperstation/sound/misc/what_a_thrill2.ogg b/hyperstation/sound/misc/what_a_thrill2.ogg new file mode 100644 index 00000000..f2a235b9 Binary files /dev/null and b/hyperstation/sound/misc/what_a_thrill2.ogg differ