Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion code/modules/mob/inventory.dm
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ GLOBAL_LIST_INIT(slot_equipment_priority, list(
if(!item)
return FALSE //Grab processing has a chance of returning null

if(item.too_heavy_to_throw())
if(item.too_heavy_to_throw() && !(a_intent == I_HELP && Adjacent(target)))
to_chat(src, SPAN_DANGER("You try to throw \the [item] with a lot of difficulty..."))
if(do_after(src, 2 SECONDS))
to_chat(src, SPAN_DANGER("<font size=4>Your grip slips and \the [item] falls onto your foot!</font>"))
Expand Down
6 changes: 6 additions & 0 deletions html/changelogs/FootSaving.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
author: TheGreyWolf

delete-after: True

changes:
- rscadd: "Cargo packages and other heavy objects can now be put beside you without risking the health of your foot."
Loading