From d8d8a641d3b804a797834147cdbdd22e44e835f2 Mon Sep 17 00:00:00 2001 From: Kyep Date: Sun, 14 Apr 2019 20:14:44 -0700 Subject: [PATCH] adds portal effect, neca request --- code/modules/mob/living/carbon/human/life.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index 6fb52044a79..8664b850b24 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -59,7 +59,9 @@ if(!is_station_level(T.z)) return var/area/A = get_area(src) - cryo_ssd(src) + if(cryo_ssd(src)) + var/obj/effect/portal/P = new /obj/effect/portal(T, null, null, 100) + P.name = "NT SSD Teleportation Portal" if(A.fast_despawn) force_cryo_human(src)