From 950bedecc4616407e1dfeb6bd5bdb9d931cba9e5 Mon Sep 17 00:00:00 2001 From: Time-Green <7501474+Time-Green@users.noreply.github.com> Date: Mon, 18 Dec 2023 16:11:13 +0100 Subject: [PATCH] Fixes monkeys eating your organs while still inside you (#80416) Fixes #80367, #80372 (hopefully) :cl: fix: Monkeys will no longer eat your organs while they're still inside of you /:cl: --- code/modules/surgery/organs/organ_movement.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/surgery/organs/organ_movement.dm b/code/modules/surgery/organs/organ_movement.dm index bee717fb764..073ef4b1137 100644 --- a/code/modules/surgery/organs/organ_movement.dm +++ b/code/modules/surgery/organs/organ_movement.dm @@ -118,6 +118,7 @@ item_flags |= ABSTRACT ADD_TRAIT(src, TRAIT_NODROP, ORGAN_INSIDE_BODY_TRAIT) + interaction_flags_item &= ~INTERACT_ITEM_ATTACK_HAND_PICKUP /* * Remove the organ from the select mob. @@ -208,6 +209,7 @@ item_flags &= ~ABSTRACT REMOVE_TRAIT(src, TRAIT_NODROP, ORGAN_INSIDE_BODY_TRAIT) + interaction_flags_item |= INTERACT_ITEM_ATTACK_HAND_PICKUP /// In space station videogame, nothing is sacred. If somehow an organ is removed unexpectedly, handle it properly /obj/item/organ/proc/forced_removal()