From 33d84ef73f6f0a8f8a07a0640c49acbb71e58258 Mon Sep 17 00:00:00 2001 From: phil235 Date: Wed, 27 Apr 2016 13:05:13 +0200 Subject: [PATCH] Fixes inserting reagents in RnD machines --- code/modules/research/protolathe.dm | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/code/modules/research/protolathe.dm b/code/modules/research/protolathe.dm index 428ee5947a4..e704dd823ae 100644 --- a/code/modules/research/protolathe.dm +++ b/code/modules/research/protolathe.dm @@ -81,9 +81,6 @@ Note: Must be placed west/left of and R&D console to function. /obj/machinery/r_n_d/protolathe/Insert_Item(obj/item/O, mob/user) - if(O.is_open_container()) //inserting reagents into the machine - return 1 - if(istype(O,/obj/item/stack/sheet)) . = 1 if(!is_insertion_ready(user)) @@ -113,4 +110,4 @@ Note: Must be placed west/left of and R&D console to function. else if(user.a_intent != "harm") user << "You cannot insert this item into the [name]!" else - return 0 \ No newline at end of file + return 0