mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
Fixes cloth from cutting bedsheets ending up INSIDE THE USER (#20286)
This commit is contained in:
committed by
KorPhaeron
parent
228a6b8a71
commit
aa7ae7dc38
@@ -38,7 +38,7 @@ LINEN BINS
|
|||||||
|
|
||||||
/obj/item/weapon/bedsheet/attackby(obj/item/I, mob/user, params)
|
/obj/item/weapon/bedsheet/attackby(obj/item/I, mob/user, params)
|
||||||
if(istype(I, /obj/item/weapon/wirecutters) || I.is_sharp())
|
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)
|
transfer_fingerprints_to(C)
|
||||||
C.add_fingerprint(user)
|
C.add_fingerprint(user)
|
||||||
qdel(src)
|
qdel(src)
|
||||||
|
|||||||
Reference in New Issue
Block a user