mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-30 08:29:57 +01:00
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:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user