Skip to content

Commit

Permalink
Update inventory.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
Rerik007 committed Feb 29, 2024
1 parent 9bb1eab commit 505e3e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/modules/mob/inventory.dm
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
if(I in get_equipped_items(include_pockets = TRUE, include_hands = TRUE))
drop_item_ground(I)
else
forceMove(drop_location())
I.forceMove(drop_location())
return FALSE

if(qdel_on_fail)
Expand Down Expand Up @@ -121,7 +121,7 @@
if(I in get_equipped_items(include_pockets = TRUE, include_hands = TRUE))
drop_item_ground(I)
else
forceMove(drop_location())
I.forceMove(drop_location())
return FALSE

if(qdel_on_fail)
Expand Down Expand Up @@ -180,7 +180,7 @@
if(I in get_equipped_items(include_pockets = TRUE, include_hands = TRUE))
drop_item_ground(I)
else
forceMove(drop_location())
I.forceMove(drop_location())
return FALSE

if(qdel_on_fail)
Expand Down

0 comments on commit 505e3e6

Please sign in to comment.