From 5b99026c812c1bfb6b82ff3d1d5536d025e71f8f Mon Sep 17 00:00:00 2001 From: Elli-Skala <69182855+Elli-Skala@users.noreply.github.com> Date: Thu, 15 Apr 2021 19:54:45 -0400 Subject: [PATCH] Update processor.dm (#4932) --- .../food_and_drinks/kitchen_machinery/processor.dm | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/code/modules/food_and_drinks/kitchen_machinery/processor.dm b/code/modules/food_and_drinks/kitchen_machinery/processor.dm index 7e1834288fe..f953c735a3d 100644 --- a/code/modules/food_and_drinks/kitchen_machinery/processor.dm +++ b/code/modules/food_and_drinks/kitchen_machinery/processor.dm @@ -113,19 +113,6 @@ else return ..() -//SKYRAT EDIT ADDITION -/obj/machinery/processor/attack_hand(mob/living/user, list/modifiers) - . = ..() - if(ishuman(user) && user.Adjacent(src)) - var/mob/living/carbon/human/H = user - if(H.combat_mode) - var/obj/item/bodypart/limb = H.get_active_hand() - H.visible_message("[H] puts their hand in the [src] causing it to be brutally dismembered!", \ - "You put your hand in [src] causing it to be torn off, ouch!") - playsound(src.loc, 'sound/machines/blender.ogg', 50, TRUE) - limb.dismember() -//SKYRAT EDIT ADDITION END - /obj/machinery/processor/interact(mob/user) if(processing) to_chat(user, "[src] is in the process of processing!")