From 62540b5b8c71f104b70c63be401e4acd496e3fe3 Mon Sep 17 00:00:00 2001 From: Techhead0 Date: Sat, 16 Jan 2016 14:27:07 -0500 Subject: [PATCH] Fixes #11833 If you were holding the sheet, they would spawn inside the mob, irretrievable. --- code/game/objects/structures/bedsheet_bin.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/bedsheet_bin.dm b/code/game/objects/structures/bedsheet_bin.dm index 23d819afa0a..0fe3361db14 100644 --- a/code/game/objects/structures/bedsheet_bin.dm +++ b/code/game/objects/structures/bedsheet_bin.dm @@ -31,7 +31,7 @@ LINEN BINS if(do_after(user, 50)) user << "You cut [src] into pieces!" for(var/i in 1 to rand(2,5)) - new /obj/item/weapon/reagent_containers/glass/rag(src.loc) + new /obj/item/weapon/reagent_containers/glass/rag(get_turf(src)) qdel(src) return ..()