Skip to content

Commit

Permalink
Merge branch 'master' into SynthUpdateVendor
Browse files Browse the repository at this point in the history
  • Loading branch information
Steelpoint authored Sep 26, 2023
2 parents e8d7d36 + 3d61f2e commit 0bf2fee
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 4 additions & 1 deletion code/game/objects/items/storage/pouch.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1052,7 +1052,10 @@
to_chat(usr, SPAN_WARNING("There is no container inside this pouch!"))
return

usr.put_in_any_hand_if_possible(inner, disable_warning = TRUE)
var/had_empty_hand = usr.put_in_any_hand_if_possible(inner, disable_warning = TRUE)
if(!had_empty_hand)
usr.drop_inv_item_on_ground(inner)

inner = null
update_icon()

Expand Down
4 changes: 4 additions & 0 deletions html/changelogs/AutoChangeLog-pr-4491.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
author: "Casper"
delete-after: True
changes:
- bugfix: "fixed reagent canister being deleted if ejected with your hands full"

0 comments on commit 0bf2fee

Please sign in to comment.