[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>
This commit is contained in:
SkyratBot
2021-12-03 22:15:37 +01:00
committed by GitHub
parent 83662620c5
commit 1b252f6a08
+4 -1
View File
@@ -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)