POLARIS: Fix cutting of bedsheets while holding them.

Cutting bedsheets while holding them dropped the resulting rags in the mob's contents.
This commit is contained in:
Leshana
2018-04-17 20:23:56 -04:00
parent c7cd04b2bb
commit 438203393e

View File

@@ -32,7 +32,7 @@ LINEN BINS
if(do_after(user, 50))
user << "<span class='notice'>You cut [src] into pieces!</span>"
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
..()