From 6b43f1fe7a734ee7acd3524a2f1e90a05c0ba16e Mon Sep 17 00:00:00 2001 From: ReoDaProtovali <84661000+ReoDaProtovali@users.noreply.github.com> Date: Thu, 14 Nov 2024 02:34:14 -0600 Subject: [PATCH] Pump Clunk change clong, clong --- GainStation13/code/machinery/feeding_tube_industrial.dm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/GainStation13/code/machinery/feeding_tube_industrial.dm b/GainStation13/code/machinery/feeding_tube_industrial.dm index 47a26250d0..0897bda56b 100644 --- a/GainStation13/code/machinery/feeding_tube_industrial.dm +++ b/GainStation13/code/machinery/feeding_tube_industrial.dm @@ -202,10 +202,9 @@ // expel the contents of the holder object, then delete it // called when the holder exits the outlet /obj/structure/disposaloutlet/industrial_feeding_tube/expel(obj/structure/disposalholder/H) - var/clunkVol = LAZYLEN(H.contents) if(H.hasmob) //Uh oh- - clunkVol += 25 - playsound(src, H.hasmob ? "clang" : "clangsmall", clamp(clunkVol, 5, H.hasmob ? 50 : 25)) + playsound(src, H.hasmob ? "clang", 100) + visible_message("\The [src] loudly clunks as something large enters it's intake!") H.active = FALSE H.vent_gas(get_turf(src)) if(clogged)