Fixes Wood Amounts

This commit is contained in:
Fox-McCloud
2015-11-21 22:57:23 -05:00
parent 740e5304fd
commit 3662431862
2 changed files with 5 additions and 2 deletions
@@ -83,7 +83,9 @@
/obj/structure/stool/bed/chair/wood/attackby(obj/item/weapon/W as obj, mob/user as mob, params)
if(istype(W, /obj/item/weapon/wrench))
playsound(src.loc, 'sound/items/Ratchet.ogg', 50, 1)
new /obj/item/stack/sheet/wood(src.loc)
new /obj/item/stack/sheet/wood(get_turf(src))
new /obj/item/stack/sheet/wood(get_turf(src))
new /obj/item/stack/sheet/wood(get_turf(src))
qdel(src)
else
..()