Removes the reinforce girder verb

This commit is contained in:
mwerezak
2015-08-20 22:01:15 -04:00
parent db7ba70415
commit 8626fbfd39
2 changed files with 1 additions and 18 deletions
-17
View File
@@ -191,23 +191,6 @@
icon_state = "reinforced"
reinforcing = 0
/obj/structure/girder/verb/reinforce_with_material_verb()
set name = "Reinforce girder"
set desc = "Reinforce a girder with metal."
set src in view(1)
var/mob/living/user = usr
if(!istype(user) || !(user.l_hand || user.r_hand) || !Adjacent(user))
return
var/obj/item/stack/material/S = user.l_hand
if(!istype(S))
S = user.r_hand
if(!istype(S))
user << "You cannot plate \the [src] with that."
return
reinforce_with_material(S, user)
/obj/structure/girder/proc/dismantle()
new /obj/item/stack/material/steel(get_turf(src))
qdel(src)
+1 -1
View File
@@ -15,4 +15,4 @@ author: HarpyEagle
delete-after: True
changes:
- tweak: "Girders can now be reinforced by using a screwdriver on the girder before applying the material sheets. Use a screwdriver again to cancel reinforcing."
- tweak: "Girders are now reinforced by using a screwdriver on the girder before applying the material sheets. Use a screwdriver again instead to cancel reinforcing."