From 674bfe5d0822d29e2c8f0f1eb3a4fb5dda4778cd Mon Sep 17 00:00:00 2001 From: Twinmold93 Date: Tue, 14 Jun 2016 16:55:40 -0500 Subject: [PATCH] No Longer Can Eat Cybernetic Implants (#4669) This makes is so you can no longer eat cybernetic implants improperly, just because they are in organ code. Fixes the check that originally made it so you couldn't eat them. :cl: Twinmold Fix: Fixes being able to eat cybernetic implants so you cannot eat them/force feed them to people. /:cl: --- code/modules/surgery/organs/organ_internal.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/surgery/organs/organ_internal.dm b/code/modules/surgery/organs/organ_internal.dm index 57e2934dbb4..f4a47c595cb 100644 --- a/code/modules/surgery/organs/organ_internal.dm +++ b/code/modules/surgery/organs/organ_internal.dm @@ -81,7 +81,7 @@ return ..() /obj/item/organ/internal/proc/prepare_eat() - if(robotic) + if(status == ORGAN_ROBOT) return //no eating cybernetic implants! var/obj/item/weapon/reagent_containers/food/snacks/organ/S = new S.name = name