From 989d8a727d6006ea0cf828d97a92727f352d2872 Mon Sep 17 00:00:00 2001 From: Leshana Date: Tue, 17 Apr 2018 20:23:56 -0400 Subject: [PATCH] POLARIS: Fix cutting of bedsheets while holding them. Cutting bedsheets while holding them dropped the resulting rags in the mob's contents. --- 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 9b3d866d2b..eddffe55ea 100644 --- a/code/game/objects/structures/bedsheet_bin.dm +++ b/code/game/objects/structures/bedsheet_bin.dm @@ -32,7 +32,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(drop_location()) qdel(src) return ..()