From 58bc5dc7f4ecf69fdad8df646d562ebaaf565aec Mon Sep 17 00:00:00 2001 From: Eli Date: Tue, 14 Apr 2026 03:34:47 +1000 Subject: [PATCH] Disable give to self (#19411) Adds a check to make sure the target of help intent passing isn't the same person. This was preventing the interaction of tossing items and held mobs at yourself to initiate spont vore. --- code/modules/mob/living/living.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index 1c0097f150..94c6f7e060 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -1332,7 +1332,7 @@ return FALSE //Grab processing has a chance of returning null // Help intent + Adjacent = pass item to other - if(a_intent == I_HELP && Adjacent(target) && isitem(item) && ishuman(target)) + if(a_intent == I_HELP && Adjacent(target) && isitem(item) && ishuman(target) && target != src) var/obj/item/I = item var/mob/living/carbon/human/H = target if(H.in_throw_mode && H.a_intent == I_HELP && unEquip(I))