mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-29 00:06:38 +01:00
Butchering, Macro standardization, and generic tidying (#3936)
* Beginning * Moar * Blelelelele * Robo Organs *Flooshed* * Went overboard and organized a shit ton of tags... * Partially implements VOREStation#9287 * Performance fixes from Polaris#7759 * More Code Cleaning * Recompiled TGUI Bundle
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
|
||||
var/turf/T = get_turf(usr)
|
||||
if(!T) // In null space.
|
||||
to_chat(usr, span("warning", "You appear to be in a place without any sort of concept of direction. You have bigger problems to worry about."))
|
||||
to_chat(usr, SPAN_WARNING( "You appear to be in a place without any sort of concept of direction. You have bigger problems to worry about."))
|
||||
return
|
||||
|
||||
if(!T.outdoors) // They're inside.
|
||||
@@ -19,7 +19,7 @@
|
||||
else // They're outside and hopefully on a planet.
|
||||
var/datum/planet/P = SSplanets.z_to_planet[T.z]
|
||||
if(!P)
|
||||
to_chat(usr, span("warning", "You appear to be outside, but not on a planet... Something is wrong."))
|
||||
to_chat(usr, SPAN_WARNING( "You appear to be outside, but not on a planet... Something is wrong."))
|
||||
return
|
||||
|
||||
var/datum/weather_holder/WH = P.weather_holder
|
||||
@@ -57,4 +57,3 @@
|
||||
to_chat(usr, "[P.moon_name] is not visible. It must be a new moon.")
|
||||
else
|
||||
to_chat(usr, "[P.moon_name] appears to currently be a [P.moon_phase].")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user