mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-22 05:25:15 +01:00
every case of initialize that should have mapload, does (#61623)
## About The Pull Request stop forgetting to include mapload, if you don't include it then every single subtype past it by default doesn't include it for example, `obj/item` didn't include mapload so every single item by default didn't fill in mapload  ## Regex used: procs without args, not even regex `/Initialize()` procs with args `\/Initialize\((?!mapload)((.)*\w)?` cleanup of things i didn't want to mapload: `\/datum\/(.)*\/Initialize\(mapload`
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
zone = BODY_ZONE_HEAD
|
||||
w_class = WEIGHT_CLASS_TINY
|
||||
|
||||
/obj/item/organ/cyberimp/bci/Initialize()
|
||||
/obj/item/organ/cyberimp/bci/Initialize(mapload)
|
||||
. = ..()
|
||||
|
||||
var/obj/item/integrated_circuit/circuit = new(src)
|
||||
@@ -335,7 +335,7 @@
|
||||
|
||||
COOLDOWN_DECLARE(message_cooldown)
|
||||
|
||||
/obj/machinery/bci_implanter/Initialize()
|
||||
/obj/machinery/bci_implanter/Initialize(mapload)
|
||||
. = ..()
|
||||
occupant_typecache = typecacheof(/mob/living/carbon)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user