From be3439e461e39a0e16375302eea4bf9bf465c654 Mon Sep 17 00:00:00 2001 From: kappa-sama <44128284+kappa-sama@users.noreply.github.com> Date: Wed, 11 Dec 2019 16:57:06 -0500 Subject: [PATCH] idk maybe? --- code/modules/mob/living/carbon/human/human.dm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 13b57b0715..b07a00e6d2 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -866,9 +866,13 @@ piggyback(target) return //If you dragged them to you and you're aggressively grabbing try to fireman carry them - else if(user != target && user.a_intent == INTENT_HELP) - fireman_carry(target) + else if(user != target) + if(user.a_intent != INTENT_HELP) + to_chat(user, "You need to be in help intent to do that!") return + else if(user.a_intent == INTENT_HELP) + fireman_carry(target) + return . = ..() //src is the user that will be carrying, target is the mob to be carried