Update files
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
var/obj/item/holder = null
|
||||
// You can use this var for item path, it would be converted into an item on New()
|
||||
|
||||
/obj/item/organ/cyberimp/arm/Initialize()
|
||||
/obj/item/organ/cyberimp/arm/Initialize(mapload)
|
||||
. = ..()
|
||||
if(ispath(holder))
|
||||
holder = new holder(src)
|
||||
@@ -242,7 +242,7 @@
|
||||
desc = "An integrated projector mounted onto a user's arm that is able to be used as a powerful flash."
|
||||
contents = newlist(/obj/item/assembly/flash/armimplant)
|
||||
|
||||
/obj/item/organ/cyberimp/arm/flash/Initialize()
|
||||
/obj/item/organ/cyberimp/arm/flash/Initialize(mapload)
|
||||
. = ..()
|
||||
if(locate(/obj/item/assembly/flash/armimplant) in items_list)
|
||||
var/obj/item/assembly/flash/armimplant/F = locate(/obj/item/assembly/flash/armimplant) in items_list
|
||||
@@ -258,7 +258,7 @@
|
||||
desc = "A powerful cybernetic implant that contains combat modules built into the user's arm."
|
||||
contents = newlist(/obj/item/melee/transforming/energy/blade/hardlight, /obj/item/gun/medbeam, /obj/item/borg/stun, /obj/item/assembly/flash/armimplant)
|
||||
|
||||
/obj/item/organ/cyberimp/arm/combat/Initialize()
|
||||
/obj/item/organ/cyberimp/arm/combat/Initialize(mapload)
|
||||
. = ..()
|
||||
if(locate(/obj/item/assembly/flash/armimplant) in items_list)
|
||||
var/obj/item/assembly/flash/armimplant/F = locate(/obj/item/assembly/flash/armimplant) in items_list
|
||||
|
||||
@@ -246,7 +246,7 @@
|
||||
var/obj/effect/abstract/eye_lighting/on_mob
|
||||
var/image/mob_overlay
|
||||
|
||||
/obj/item/organ/eyes/robotic/glow/Initialize()
|
||||
/obj/item/organ/eyes/robotic/glow/Initialize(mapload)
|
||||
. = ..()
|
||||
mob_overlay = image('icons/mob/human_face.dmi', "eyes_glow_gs")
|
||||
|
||||
@@ -407,7 +407,7 @@
|
||||
mouse_opacity = MOUSE_OPACITY_TRANSPARENT
|
||||
var/obj/item/organ/eyes/robotic/glow/parent
|
||||
|
||||
/obj/effect/abstract/eye_lighting/Initialize()
|
||||
/obj/effect/abstract/eye_lighting/Initialize(mapload)
|
||||
. = ..()
|
||||
parent = loc
|
||||
if(!istype(parent))
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
var/useable = TRUE
|
||||
var/list/food_reagents = list(/datum/reagent/consumable/nutriment = 5)
|
||||
|
||||
/obj/item/organ/Initialize()
|
||||
/obj/item/organ/Initialize(mapload)
|
||||
. = ..()
|
||||
if(organ_flags & ORGAN_EDIBLE)
|
||||
AddComponent(/datum/component/edible, food_reagents, null, RAW | MEAT | GROSS, null, 10, null, null, null, CALLBACK(src, .proc/OnEatFrom))
|
||||
@@ -359,7 +359,7 @@
|
||||
name = "Illegal organ"
|
||||
desc = "Something hecked up"
|
||||
|
||||
/obj/item/organ/random/Initialize()
|
||||
/obj/item/organ/random/Initialize(mapload)
|
||||
..()
|
||||
var/list = list(/obj/item/organ/tongue, /obj/item/organ/brain, /obj/item/organ/heart, /obj/item/organ/liver, /obj/item/organ/ears, /obj/item/organ/eyes, /obj/item/organ/tail, /obj/item/organ/stomach)
|
||||
var/newtype = pick(list)
|
||||
|
||||
@@ -168,7 +168,7 @@
|
||||
var/phomeme_type = "sans"
|
||||
var/list/phomeme_types = list(/datum/accent/span/sans, /datum/accent/span/papyrus)
|
||||
|
||||
/obj/item/organ/tongue/bone/Initialize()
|
||||
/obj/item/organ/tongue/bone/Initialize(mapload)
|
||||
initial_accents += pick(phomeme_types)
|
||||
. = ..()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user