diff --git a/code/modules/mob/living/carbon/give.dm b/code/modules/mob/living/carbon/give.dm index 392b494d00..a712240622 100644 --- a/code/modules/mob/living/carbon/give.dm +++ b/code/modules/mob/living/carbon/give.dm @@ -44,7 +44,7 @@ user << "Your hands are full." user << "Their hands are full." return - if(!user.drop_item(I)) + if(!user.dropItemToGround(I)) src << "[user] can't let go of \the [I]!" user << "You can't seem to let go of \the [I]." return @@ -55,4 +55,4 @@ if("No") src.visible_message("[user] tried to hand \the [I] to [src] but \he didn't want it.") else - user << "[src]'s hands are full." \ No newline at end of file + user << "[src]'s hands are full."