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:
Zandario
2022-04-26 13:21:19 -07:00
committed by GitHub
parent e06e04282f
commit db39fde779
409 changed files with 3823 additions and 3068 deletions
+2 -3
View File
@@ -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].")