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:
warriorstar-orion
2024-10-23 19:07:46 +00:00
committed by GitHub
co-authored by DGamerL
parent 766816954d
commit 9465b565b8
111 changed files with 168 additions and 160 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
/mob/living/Initialize()
/mob/living/Initialize(mapload)
. = ..()
var/datum/atom_hud/data/human/medical/advanced/medhud = GLOB.huds[DATA_HUD_MEDICAL_ADVANCED]
medhud.add_to_hud(src)
@@ -138,7 +138,7 @@
mob_biotypes = MOB_ORGANIC | MOB_BEAST
footstep_type = FOOTSTEP_MOB_SHOE
/mob/living/simple_animal/cow/Initialize()
/mob/living/simple_animal/cow/Initialize(mapload)
udder = new()
. = ..()
@@ -48,7 +48,7 @@
/// The amount of nutrition the nian caterpillar needs to evolve, default is 500.
var/nutrition_need = 500
/mob/living/simple_animal/nian_caterpillar/Initialize()
/mob/living/simple_animal/nian_caterpillar/Initialize(mapload)
. = ..()
real_name = name
add_language("Tkachi")
@@ -148,7 +148,7 @@
var/regen_cooldown = 0
/mob/living/simple_animal/hostile/carp/megacarp/Initialize()
/mob/living/simple_animal/hostile/carp/megacarp/Initialize(mapload)
. = ..()
name = "[pick(GLOB.megacarp_first_names)] [pick(GLOB.megacarp_last_names)]"
melee_damage_lower += rand(2, 10)
@@ -43,7 +43,7 @@
/// Chance of doing the throw or stamina damage, along with the flat damage amount
var/throw_onhit = 50
/mob/living/simple_animal/hostile/gorilla/Initialize()
/mob/living/simple_animal/hostile/gorilla/Initialize(mapload)
. = ..()
var/datum/action/innate/gorilla/gorilla_toggle/toggle = new
toggle.Grant(src)