mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 03:57:13 +01:00
refactor/ci: enforce mapload in Initialize args (#26878)
* refactor/ci: enforce mapload in Initialize args * add new missing mapload arg * add yet another missing mapload arg * Update code/modules/power/engines/singularity/particle_accelerator/particle.dm Signed-off-by: DGamerL <108773801+DGamerL@users.noreply.github.com> --------- Signed-off-by: DGamerL <108773801+DGamerL@users.noreply.github.com> Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com>
This commit is contained in:
co-authored by
DGamerL
parent
766816954d
commit
9465b565b8
@@ -359,7 +359,7 @@
|
||||
icon_state = "random_book"
|
||||
var/amount = 1
|
||||
|
||||
/obj/item/book/random/Initialize()
|
||||
/obj/item/book/random/Initialize(mapload)
|
||||
. = ..()
|
||||
addtimer(CALLBACK(src, PROC_REF(spawn_books)), 0)
|
||||
|
||||
|
||||
@@ -98,7 +98,7 @@
|
||||
/obj/structure/bookcase/manuals/medical
|
||||
name = "Medical Manuals bookcase"
|
||||
|
||||
/obj/structure/bookcase/manuals/medical/Initialize()
|
||||
/obj/structure/bookcase/manuals/medical/Initialize(mapload)
|
||||
. = ..()
|
||||
new /obj/item/book/manual/medical_cloning(src)
|
||||
update_icon(UPDATE_ICON_STATE)
|
||||
@@ -107,7 +107,7 @@
|
||||
/obj/structure/bookcase/manuals/engineering
|
||||
name = "Engineering Manuals bookcase"
|
||||
|
||||
/obj/structure/bookcase/manuals/engineering/Initialize()
|
||||
/obj/structure/bookcase/manuals/engineering/Initialize(mapload)
|
||||
. = ..()
|
||||
new /obj/item/book/manual/wiki/engineering_construction(src)
|
||||
new /obj/item/book/manual/engineering_particle_accelerator(src)
|
||||
@@ -120,7 +120,7 @@
|
||||
/obj/structure/bookcase/manuals/research_and_development
|
||||
name = "R&D Manuals bookcase"
|
||||
|
||||
/obj/structure/bookcase/manuals/research_and_development/Initialize()
|
||||
/obj/structure/bookcase/manuals/research_and_development/Initialize(mapload)
|
||||
. = ..()
|
||||
new /obj/item/book/manual/research_and_development(src)
|
||||
update_icon(UPDATE_ICON_STATE)
|
||||
@@ -128,7 +128,7 @@
|
||||
/obj/structure/bookcase/sop
|
||||
name = "bookcase (Standard Operating Procedures)"
|
||||
|
||||
/obj/structure/bookcase/sop/Initialize()
|
||||
/obj/structure/bookcase/sop/Initialize(mapload)
|
||||
. = ..()
|
||||
new /obj/item/book/manual/wiki/sop_command(src)
|
||||
new /obj/item/book/manual/wiki/sop_engineering(src)
|
||||
|
||||
Reference in New Issue
Block a user