Skip to content

Commit

Permalink
fixes storage not dropping contents on destruction (#6146)
Browse files Browse the repository at this point in the history
oops
  • Loading branch information
silicons authored Nov 16, 2023
1 parent 9d26ed2 commit 09ae322
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions code/game/objects/items/storage/_storage.dm
Original file line number Diff line number Diff line change
Expand Up @@ -785,3 +785,8 @@
return
for(var/atom/A as anything in contents)
A.clean_radiation(str, mul, cheap)

/obj/item/storage/drop_products(method, atom/where)
. = ..()
for(var/atom/movable/AM as anything in contents)
AM.forceMove(where)

0 comments on commit 09ae322

Please sign in to comment.