mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-16 20:16:09 +00:00
* Fixes 118(give or take) cases of mapload not being passed to initilaize (#69107) fixes 114 cases of mapload not being passed to initilaize * Fixes 118(give or take) cases of mapload not being passed to initilaize * Fixes a lot (give or take) cases of mapload not being passed to initilaize Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com> Co-authored-by: Tom <8881105+tf-4@users.noreply.github.com>
22 lines
525 B
Plaintext
22 lines
525 B
Plaintext
/obj/effect/singularity_creation
|
|
name = "collapsing spacetime"
|
|
desc = "It looks like spacetime is collapsing, oh shit!"
|
|
icon = 'modular_skyrat/modules/aesthetics/singularity/singularity_creation.dmi'
|
|
icon_state = ""
|
|
anchored = TRUE
|
|
opacity = FALSE
|
|
pixel_x = -32
|
|
pixel_y = -32
|
|
var/timeleft = 62
|
|
|
|
/obj/effect/singularity_creation/Initialize(mapload)
|
|
. = ..()
|
|
if(timeleft)
|
|
QDEL_IN(src, timeleft)
|
|
|
|
/obj/effect/singularity_creation/singularity_act()
|
|
return
|
|
|
|
/obj/singularity/proc/make_visible()
|
|
invisibility = NONE
|