Replace a number of New() overrides with Initialize() (#60223)

This commit is contained in:
coiax
2021-07-15 18:14:20 -07:00
committed by GitHub
parent a6bd69118b
commit e4e3195f88
10 changed files with 29 additions and 38 deletions
@@ -3,7 +3,7 @@
// A place where tube pods stop, and people can get in or out.
// Mappers: use "Generate Instances from Directions" for this
// one.
// one.
/obj/structure/transit_tube/station
@@ -21,8 +21,8 @@
var/base_icon = "station0"
var/boarding_dir //from which direction you can board the tube
/obj/structure/transit_tube/station/New()
..()
/obj/structure/transit_tube/station/Initialize()
. = ..()
START_PROCESSING(SSobj, src)
/obj/structure/transit_tube/station/Destroy()