mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-23 03:57:48 +01:00
Merge pull request #2707 from VOREStation/aro-armoryagain
Redesigns the armory
This commit is contained in:
@@ -19,6 +19,8 @@
|
||||
return
|
||||
|
||||
/obj/structure/table/rack/update_icon()
|
||||
if(material) //VOREStation Add for rack colors based on materials
|
||||
color = material.icon_colour
|
||||
return
|
||||
|
||||
/obj/structure/table/rack/holorack/dismantle(obj/item/weapon/wrench/W, mob/user)
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
/obj/structure/table/rack/steel
|
||||
color = "#666666"
|
||||
|
||||
/obj/structure/table/rack/steel/New()
|
||||
material = get_material_by_name(DEFAULT_WALL_MATERIAL)
|
||||
..()
|
||||
|
||||
/obj/structure/table/rack/shelf
|
||||
name = "shelving"
|
||||
desc = "Some nice metal shelves."
|
||||
icon = 'icons/obj/objects_vr.dmi'
|
||||
icon_state = "shelf"
|
||||
|
||||
/obj/structure/table/rack/shelf/steel
|
||||
color = "#666666"
|
||||
|
||||
/obj/structure/table/rack/shelf/steel/New()
|
||||
material = get_material_by_name(DEFAULT_WALL_MATERIAL)
|
||||
..()
|
||||
Reference in New Issue
Block a user