From aa7ae7dc38cba47fa1434e342371d78ca3f0fdfc Mon Sep 17 00:00:00 2001 From: Remie Richards Date: Fri, 2 Sep 2016 18:40:16 +0100 Subject: [PATCH] Fixes cloth from cutting bedsheets ending up INSIDE THE USER (#20286) --- 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 946b2caf509b..b81634de8881 100644 --- a/code/game/objects/structures/bedsheet_bin.dm +++ b/code/game/objects/structures/bedsheet_bin.dm @@ -38,7 +38,7 @@ LINEN BINS /obj/item/weapon/bedsheet/attackby(obj/item/I, mob/user, params) if(istype(I, /obj/item/weapon/wirecutters) || I.is_sharp()) - var/obj/item/stack/sheet/cloth/C = new (loc, 3) + var/obj/item/stack/sheet/cloth/C = new (get_turf(src), 3) transfer_fingerprints_to(C) C.add_fingerprint(user) qdel(src)