idk maybe?

This commit is contained in:
kappa-sama
2019-12-11 16:57:06 -05:00
committed by GitHub
parent cdda28f85c
commit be3439e461
@@ -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, "<span class='warning'>You need to be in help intent to do that!</span>")
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