mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-30 15:38:02 +01:00
Initialize fixing (#17279)
* Initialoize fixing * diff fix * add init grep test * fixed missed ones * . * some more * ,
This commit is contained in:
@@ -24,7 +24,7 @@ using metal and glass, it uses glass and reagents (usually sulphuric acid).
|
||||
idle_power_usage = 30
|
||||
active_power_usage = 2500
|
||||
|
||||
/obj/machinery/r_n_d/circuit_imprinter/Initialize()
|
||||
/obj/machinery/r_n_d/circuit_imprinter/Initialize(mapload)
|
||||
. = ..()
|
||||
|
||||
spawn() // Go through all materials, and add them to the possible storage, but hide them unless we contain them.
|
||||
|
||||
@@ -17,7 +17,7 @@ Note: Must be placed within 3 tiles of the R&D Console
|
||||
active_power_usage = 2500
|
||||
var/rped_recycler_ready = TRUE
|
||||
|
||||
/obj/machinery/r_n_d/destructive_analyzer/Initialize()
|
||||
/obj/machinery/r_n_d/destructive_analyzer/Initialize(mapload)
|
||||
. = ..()
|
||||
default_apply_parts()
|
||||
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
|
||||
hidden_materials = list(MAT_PLASTEEL, MAT_DURASTEEL, MAT_GRAPHITE, MAT_VERDANTIUM, MAT_MORPHIUM, MAT_METALHYDROGEN, MAT_SUPERMATTER)
|
||||
|
||||
/obj/machinery/r_n_d/protolathe/Initialize()
|
||||
/obj/machinery/r_n_d/protolathe/Initialize(mapload)
|
||||
. = ..()
|
||||
|
||||
// Go through all materials, and add them to the possible storage, but hide them unless we contain them.
|
||||
|
||||
@@ -112,7 +112,7 @@ won't update every console in existence) but it's more of a hassle to do. Also,
|
||||
S.update_connections()
|
||||
break
|
||||
|
||||
/obj/machinery/computer/rdconsole/Initialize()
|
||||
/obj/machinery/computer/rdconsole/Initialize(mapload)
|
||||
SyncRDevices()
|
||||
. = ..()
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
req_access = list(access_rd) //Only the R&D can change server settings.
|
||||
circuit = /obj/item/circuitboard/rdserver
|
||||
|
||||
/obj/machinery/r_n_d/server/Initialize()
|
||||
/obj/machinery/r_n_d/server/Initialize(mapload)
|
||||
. = ..()
|
||||
default_apply_parts()
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
tot_rating += SP.rating
|
||||
update_idle_power_usage(initial(idle_power_usage) / max(1, tot_rating))
|
||||
|
||||
/obj/machinery/r_n_d/server/Initialize()
|
||||
/obj/machinery/r_n_d/server/Initialize(mapload)
|
||||
. = ..()
|
||||
if(!files)
|
||||
files = new /datum/research(src)
|
||||
|
||||
Reference in New Issue
Block a user