diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 0501a2a5ea..1e584c67c3 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -867,10 +867,7 @@ return //If you dragged them to you and you're aggressively grabbing try to fireman carry them else if(user != target) - if(user.a_intent == INTENT_GRAB || INTENT_DISARM || INTENT_HARM) - to_chat(user, "You need to be in help intent to do that!") - return - else if(user.a_intent == INTENT_HELP) + if(user.a_intent == INTENT_GRAB) fireman_carry(target) return . = ..()