From 1b252f6a080f2cafd5105fc2b6820fe72207f01f Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 3 Dec 2021 22:15:37 +0100 Subject: [PATCH] [MIRROR] Deletes the ceiling [MDB IGNORE] (#9858) * Changes message when looking up at max-z (#63212) Changed the message you get when you're at the highest z-level and try to look up to a more generic one that doesn't assume we're inside the station * Deletes the ceiling Co-authored-by: Mickyan <38563876+Mickyan@users.noreply.github.com> --- code/modules/mob/living/living.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index 4a6c5447cfe..2d0e3b38783 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -1849,7 +1849,10 @@ SIGNAL_HANDLER var/turf/ceiling = get_step_multiz(src, UP) if(!ceiling) //We are at the highest z-level. - to_chat(src, span_warning("You can't see through the ceiling above you.")) + if (prob(0.1)) + to_chat(src, span_warning("You gaze out into the infinite vastness of deep space, for a moment, you have the impulse to continue travelling, out there, out into the deep beyond, before your conciousness reasserts itself and you decide to stay within travelling distance of the station.")) + return + to_chat(src, span_warning("There's nothing interesting up there.")) return else if(!istransparentturf(ceiling)) //There is no turf we can look through above us var/turf/front_hole = get_step(ceiling, dir)