mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
[MIRROR] next new to init (#10524)
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
9156a08bf0
commit
55d696e503
@@ -84,7 +84,7 @@
|
||||
if(!linked_node)
|
||||
qdel(src)
|
||||
|
||||
/obj/effect/dark/floor/New(loc, var/node)
|
||||
/obj/effect/dark/floor/Initialize(mapload, var/node)
|
||||
. = ..()
|
||||
if(isspace(loc))
|
||||
return INITIALIZE_HINT_QDEL
|
||||
@@ -104,7 +104,7 @@
|
||||
light_range = 3
|
||||
var/node_range = 9
|
||||
|
||||
/obj/structure/prop/dark_node/New()
|
||||
/obj/structure/prop/dark_node/Initialize(mapload)
|
||||
. = ..()
|
||||
set_light(light_range, -20, "#FFFFFF")
|
||||
START_PROCESSING(SSobj, src)
|
||||
|
||||
@@ -11,10 +11,7 @@
|
||||
origin_tech = list(TECH_MAGNET = 2, TECH_BIO = 2, TECH_ILLEGAL = 1)
|
||||
possessed_voice = list()
|
||||
var/self_bind = FALSE
|
||||
|
||||
/obj/item/mindbinder/New()
|
||||
..()
|
||||
flags |= NOBLUDGEON //So borgs don't spark.
|
||||
flags = NOBLUDGEON
|
||||
|
||||
/obj/item/mindbinder/attack(mob/living/M, mob/living/user)
|
||||
usr.setClickCooldown(DEFAULT_ATTACK_COOLDOWN)
|
||||
|
||||
@@ -21,10 +21,7 @@
|
||||
"output destination" = 8
|
||||
)
|
||||
var/vac_owner = null
|
||||
|
||||
/obj/item/vac_attachment/New()
|
||||
..()
|
||||
flags |= NOBLUDGEON //No more attack messages
|
||||
flags = NOBLUDGEON
|
||||
|
||||
/obj/item/vac_attachment/attack_self(mob/living/user)
|
||||
var/set_input = null
|
||||
|
||||
@@ -8,5 +8,6 @@
|
||||
/obj/item/paper/target
|
||||
name = "target notice"
|
||||
|
||||
/obj/item/paper/target/New()
|
||||
/obj/item/paper/target/Initialize(mapload, text, title)
|
||||
. = ..()
|
||||
info = "Your target is " + span_bold("[random_name(pick(MALE,FEMALE))]") + ". Make sure they don't get out of there alive."
|
||||
|
||||
@@ -53,6 +53,6 @@
|
||||
/mob/living/simple_mob/animal/passive/mouse/rat/strong = 10, // Because I'm a horrible person. <3
|
||||
/obj/effect/spider/spiderling/non_growing = 5)
|
||||
|
||||
/obj/structure/mob_spawner/mouse_nest/mousehole/New()
|
||||
..()
|
||||
/obj/structure/mob_spawner/mouse_nest/mousehole/Initialize(mapload)
|
||||
. = ..()
|
||||
icon_state = "tunnel_hole"
|
||||
|
||||
Reference in New Issue
Block a user