[MIRROR] next new to init (#10524)

Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2025-03-24 14:10:59 -07:00
committed by GitHub
parent 9156a08bf0
commit 55d696e503
165 changed files with 672 additions and 729 deletions

View File

@@ -7,8 +7,8 @@
can_reinforce = 0
flipped = -1
/obj/structure/table/rack/New()
..()
/obj/structure/table/rack/Initialize(mapload)
. = ..()
verbs -= /obj/structure/table/verb/do_flip
verbs -= /obj/structure/table/proc/do_put

View File

@@ -4,9 +4,9 @@
/obj/structure/table/rack/steel
color = "#666666"
/obj/structure/table/rack/steel/New()
/obj/structure/table/rack/steel/Initialize(mapload)
material = get_material_by_name(MAT_STEEL)
..()
. = ..()
/obj/structure/table/rack/shelf
name = "shelving"
@@ -16,9 +16,9 @@
/obj/structure/table/rack/shelf/steel
color = "#666666"
/obj/structure/table/rack/shelf/steel/New()
/obj/structure/table/rack/shelf/steel/Initialize(mapload)
material = get_material_by_name(MAT_STEEL)
..()
. = ..()
// SOMEONE should add cool overlay stuff to this
/obj/structure/table/rack/gun_rack
@@ -29,20 +29,20 @@
/obj/structure/table/rack/gun_rack/steel
color = "#666666"
/obj/structure/table/rack/gun_rack/steel/New()
/obj/structure/table/rack/gun_rack/steel/Initialize(mapload)
material = get_material_by_name(MAT_STEEL)
..()
. = ..()
/obj/structure/table/rack/wood
color = "#A1662F"
/obj/structure/table/rack/wood/New()
/obj/structure/table/rack/wood/Initialize(mapload)
material = get_material_by_name(MAT_WOOD)
..()
. = ..()
/obj/structure/table/rack/shelf/wood
color = "#A1662F"
/obj/structure/table/rack/shelf/wood/New()
/obj/structure/table/rack/shelf/wood/Initialize(mapload)
material = get_material_by_name(MAT_WOOD)
..()
. = ..()

View File

@@ -1,5 +1,5 @@
/obj/structure/window/New()
..()
/obj/structure/window/Initialize(mapload)
. = ..()
for(var/obj/structure/table/T in view(src, 1))
T.update_connections()
T.update_icon()