Improves catwalks and railings

This commit is contained in:
Anewbe
2017-09-23 20:05:25 -05:00
parent d17bf8bb2b
commit 4b2e4eeca7
5 changed files with 61 additions and 15 deletions
+10 -1
View File
@@ -22,6 +22,14 @@
charge_costs = list(500)
stacktype = /obj/item/stack/rods
/obj/item/stack/rods/New()
..()
recipes = rods_recipes
var/global/list/datum/stack_recipe/rods_recipes = list( \
new/datum/stack_recipe("grille", /obj/structure/grille, 2, time = 10, one_per_turf = 1, on_floor = 1),
new/datum/stack_recipe("catwalk", /obj/structure/catwalk, 2, time = 80, one_per_turf = 1, on_floor = 1))
/obj/item/stack/rods/attackby(obj/item/W as obj, mob/user as mob)
if (istype(W, /obj/item/weapon/weldingtool))
var/obj/item/weapon/weldingtool/WT = W
@@ -55,7 +63,7 @@
..()
/*
/obj/item/stack/rods/attack_self(mob/user as mob)
src.add_fingerprint(user)
@@ -87,3 +95,4 @@
F.add_fingerprint(usr)
use(2)
return
*/