From 71b8dca44fabe1e075ab2b56b3360628ee94c3e8 Mon Sep 17 00:00:00 2001 From: Luc <89928798+lewcc@users.noreply.github.com> Date: Wed, 8 Feb 2023 14:09:32 -0500 Subject: [PATCH] Shoving nerds into disposals (#20173) * disposals memes * add sound effect * Update code/modules/recycling/disposal.dm Co-authored-by: Farie82 --------- Co-authored-by: Farie82 --- code/modules/recycling/disposal.dm | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/code/modules/recycling/disposal.dm b/code/modules/recycling/disposal.dm index ce6b46a21b5..c3d2f2a5a3a 100644 --- a/code/modules/recycling/disposal.dm +++ b/code/modules/recycling/disposal.dm @@ -169,6 +169,17 @@ C.density = TRUE qdel(src) +/obj/machinery/disposal/shove_impact(mob/living/target, mob/living/attacker) + target.visible_message( + "[attacker] shoves [target] inside of [src]!", + "[attacker] shoves you inside of [src]!", + "You hear the sound of something being thrown in the trash." + ) + target.forceMove(src) + add_attack_logs(attacker, target, "Shoved into disposals", target.ckey ? null : ATKLOG_ALL) + playsound(src, "sound/effects/bang.ogg") + return TRUE + // mouse drop another mob or self // /obj/machinery/disposal/MouseDrop_T(mob/living/target, mob/living/user)