The Great Spanning (#9320)

This PR get rid of all (most of) the span("thing", spans and replaces them with the SPAN_THING( variant, which has gained more popularity recently.
This commit is contained in:
Geeves
2020-07-12 15:53:28 +03:00
committed by GitHub
parent 29cfd74770
commit 33ad8096fb
260 changed files with 1527 additions and 1525 deletions
@@ -53,7 +53,7 @@ var/datum/controller/subsystem/atoms/SSatoms
++count
CHECK_TICK
admin_notice(span("danger", "Initialized [count] atoms."), R_DEBUG)
admin_notice(SPAN_DANGER("Initialized [count] atoms."), R_DEBUG)
log_ss("atoms", "Initialized [count] atoms.")
initialized = INITIALIZATION_INNEW_REGULAR
@@ -62,7 +62,7 @@ var/datum/controller/subsystem/atoms/SSatoms
for(var/I in late_loaders)
var/atom/A = I
A.LateInitialize()
admin_notice(span("danger", "Late-initialized [late_loaders.len] atoms."), R_DEBUG)
admin_notice(SPAN_DANGER("Late-initialized [late_loaders.len] atoms."), R_DEBUG)
log_ss("atoms", "Late initialized [late_loaders.len] atoms")
late_loaders.Cut()
@@ -71,7 +71,7 @@ var/datum/controller/subsystem/atoms/SSatoms
for(var/thing in late_qdel)
qdel(thing)
admin_notice(span("danger", "Late-qdeleted [num_qdels] atoms."), R_DEBUG)
admin_notice(SPAN_DANGER("Late-qdeleted [num_qdels] atoms."), R_DEBUG)
log_ss("atoms", "Late qdeleted [num_qdels] atoms.")
late_qdel.Cut()