diff --git a/code/modules/tables/rack_vr.dm b/code/modules/tables/rack_vr.dm index 137dc32fd0..af422bfb0a 100644 --- a/code/modules/tables/rack_vr.dm +++ b/code/modules/tables/rack_vr.dm @@ -1,3 +1,6 @@ +/obj/structure/table/rack + icon = 'icons/obj/objects_vr.dmi' + /obj/structure/table/rack/steel color = "#666666" @@ -8,7 +11,6 @@ /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 @@ -17,3 +19,16 @@ /obj/structure/table/rack/shelf/steel/New() material = get_material_by_name(MAT_STEEL) ..() + +// SOMEONE should add cool overlay stuff to this +/obj/structure/table/rack/gun_rack + name = "gun rack" + desc = "Seems like you could prop up some rifles here." + icon_state = "gunrack" + +/obj/structure/table/rack/gun_rack/steel + color = "#666666" + +/obj/structure/table/rack/gun_rack/steel/New() + material = get_material_by_name(MAT_STEEL) + ..() \ No newline at end of file diff --git a/icons/obj/objects_vr.dmi b/icons/obj/objects_vr.dmi index 19c7947b4b..467297775f 100644 Binary files a/icons/obj/objects_vr.dmi and b/icons/obj/objects_vr.dmi differ