From beb53e233788d4feb707e6ea2897a09eced741c7 Mon Sep 17 00:00:00 2001 From: "aranclanos@hotmail.com" Date: Tue, 6 Nov 2012 01:34:21 +0000 Subject: [PATCH] Fixes Issue 1073 - Mining ore satchel crashing clients. It's a small and crappy bugfix, the storage code of the satchel is awful and needs to be re-done. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@5010 316c924e-a436-60f5-8080-3fe189b3f50e --- code/game/objects/items/weapons/storage/storage.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/items/weapons/storage/storage.dm b/code/game/objects/items/weapons/storage/storage.dm index b0f68b3fcfc..7f9005b65e3 100644 --- a/code/game/objects/items/weapons/storage/storage.dm +++ b/code/game/objects/items/weapons/storage/storage.dm @@ -345,6 +345,7 @@ return var/turf/T = get_turf(src) + hide_from(usr) for(var/obj/item/I in contents) remove_from_storage(I, T)