From 7da6ae5da56b0f00a62db687cd9bbc4f71bfcc47 Mon Sep 17 00:00:00 2001 From: Timberpoes Date: Wed, 30 Sep 2020 03:49:56 +0100 Subject: [PATCH] Processor fix --- .../food_and_drinks/kitchen_machinery/processor.dm | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/code/modules/food_and_drinks/kitchen_machinery/processor.dm b/code/modules/food_and_drinks/kitchen_machinery/processor.dm index eee6eeb3c67..edba9ab3feb 100644 --- a/code/modules/food_and_drinks/kitchen_machinery/processor.dm +++ b/code/modules/food_and_drinks/kitchen_machinery/processor.dm @@ -137,19 +137,13 @@ var/mob/living/L = usr if(!(L.mobility_flags & MOBILITY_UI)) return - empty() + dump_inventory_contents() add_fingerprint(usr) /obj/machinery/processor/container_resist_act(mob/living/user) user.forceMove(drop_location()) user.visible_message("[user] crawls free of the processor!") -/obj/machinery/processor/proc/empty() - for (var/obj/O in src) - O.forceMove(drop_location()) - for (var/mob/M in src) - M.forceMove(drop_location()) - /obj/machinery/processor/slime name = "slime processor" desc = "An industrial grinder with a sticker saying appropriated for science department. Keep hands clear of intake area while operating."