Merge pull request #14448 from Arturlang/give_fixes

Literally just adds targets to give because i forgot to do that
This commit is contained in:
Lin
2021-03-17 16:32:11 -05:00
committed by GitHub

View File

@@ -1237,7 +1237,7 @@
if(user.incapacitated() || !user.Adjacent(src))
return FALSE
if(W && user.a_intent == INTENT_HELP && W.can_give())
user.give()
user.give(src)
return TRUE
/mob/living/carbon/verb/give_verb()
@@ -1253,4 +1253,4 @@
var/obj/item/I = usr.get_active_held_item()
var/mob/living/carbon/C = usr
if(I.can_give())
C.give()
C.give(src)