mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-20 19:44:46 +01:00
Initialize fixing (#17279)
* Initialoize fixing * diff fix * add init grep test * fixed missed ones * . * some more * ,
This commit is contained in:
@@ -32,7 +32,7 @@
|
||||
|
||||
description_fluff = "If attempting to implant a compatible augment into a synthetic limb, the limb must be screwdrivered open and then modified with a multitool before insertion can begin."
|
||||
|
||||
/obj/item/organ/internal/augment/Initialize()
|
||||
/obj/item/organ/internal/augment/Initialize(mapload)
|
||||
. = ..()
|
||||
setup_radial_icon()
|
||||
if(integrated_object_type)
|
||||
|
||||
@@ -192,7 +192,7 @@
|
||||
/datum/matter_synth/wire
|
||||
)
|
||||
|
||||
/obj/item/organ/internal/augment/armmounted/shoulder/multiple/Initialize()
|
||||
/obj/item/organ/internal/augment/armmounted/shoulder/multiple/Initialize(mapload)
|
||||
. = ..()
|
||||
|
||||
if(integrated_object)
|
||||
|
||||
@@ -72,6 +72,6 @@
|
||||
spleen_efficiency = 0.3
|
||||
spleen_tick = 15
|
||||
|
||||
/obj/item/organ/internal/spleen/minor/Initialize()
|
||||
/obj/item/organ/internal/spleen/minor/Initialize(mapload)
|
||||
. = ..()
|
||||
adjust_scale(0.7)
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
var/deadly_hold = TRUE // Does the stomach do damage to mobs eaten by its owner? Xenos should probably have this FALSE.
|
||||
|
||||
/obj/item/organ/internal/stomach/Initialize()
|
||||
/obj/item/organ/internal/stomach/Initialize(mapload)
|
||||
. = ..()
|
||||
if(reagents)
|
||||
reagents.maximum_volume = 30
|
||||
|
||||
@@ -576,7 +576,7 @@ var/const/standard_monitor_styles = "blank=ipc_blank;\
|
||||
icon_state = "datadisk2"
|
||||
var/species = SPECIES_HUMAN
|
||||
|
||||
/obj/item/disk/species/Initialize()
|
||||
/obj/item/disk/species/Initialize(mapload)
|
||||
. = ..()
|
||||
if(species)
|
||||
name = "[species] [initial(name)]"
|
||||
|
||||
@@ -211,7 +211,7 @@
|
||||
parent_organ = BP_TORSO
|
||||
vital = TRUE
|
||||
|
||||
/obj/item/organ/internal/brain/cephalon/Initialize()
|
||||
/obj/item/organ/internal/brain/cephalon/Initialize(mapload)
|
||||
. = ..()
|
||||
spawn(30 SECONDS) // FBP Dionaea need some way to be disassembled through surgery, if absolutely necessary.
|
||||
if(!owner.isSynthetic())
|
||||
|
||||
@@ -195,7 +195,7 @@
|
||||
icon = 'icons/mob/species/protean/protean.dmi'
|
||||
icon_state = "posi"
|
||||
|
||||
/obj/item/mmi/digital/posibrain/nano/Initialize()
|
||||
/obj/item/mmi/digital/posibrain/nano/Initialize(mapload)
|
||||
. = ..()
|
||||
icon_state = "posi"
|
||||
|
||||
|
||||
@@ -36,6 +36,6 @@
|
||||
parent_organ = BP_HEAD
|
||||
spleen_efficiency = 0.5
|
||||
|
||||
/obj/item/organ/internal/spleen/skrell/Initialize()
|
||||
/obj/item/organ/internal/spleen/skrell/Initialize(mapload)
|
||||
. = ..()
|
||||
adjust_scale(0.8,0.7)
|
||||
adjust_scale(0.8,0.7)
|
||||
|
||||
@@ -91,7 +91,7 @@
|
||||
var/last_strain_increase = 0 // World time of the last increase in strain.
|
||||
var/strain_regen_cooldown = 5 MINUTES
|
||||
|
||||
/obj/item/organ/internal/regennetwork/Initialize()
|
||||
/obj/item/organ/internal/regennetwork/Initialize(mapload)
|
||||
. = ..()
|
||||
var/mob/living/carbon/human/H = null
|
||||
spawn(15)
|
||||
|
||||
@@ -277,7 +277,7 @@
|
||||
throwforce = 7
|
||||
var/eyes_over_markings = FALSE //VOREStation edit
|
||||
|
||||
/obj/item/organ/external/head/Initialize()
|
||||
/obj/item/organ/external/head/Initialize(mapload)
|
||||
if(CONFIG_GET(flag/allow_headgibs))
|
||||
cannot_gib = FALSE
|
||||
return ..()
|
||||
|
||||
Reference in New Issue
Block a user