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
+2 -2
View File
@@ -89,8 +89,8 @@
new /obj/effect/overlay/temp/bluespace_fissure(get_turf(src))
new /obj/effect/overlay/temp/bluespace_fissure(get_turf(linked_to))
user.forceMove(get_turf(linked_to))
user.visible_message(span("warning", "[user] [slip_in_message]."), span("notice", "You enter \the [src]..."))
user.visible_message(span("warning", "[user] [slip_out_message]."), span("notice", "...and find your way to the other side."))
user.visible_message(SPAN_WARNING("[user] [slip_in_message]."), SPAN_NOTICE("You enter \the [src]..."))
user.visible_message(SPAN_WARNING("[user] [slip_out_message]."), SPAN_NOTICE("...and find your way to the other side."))
/datum/brain_trauma/special/love
name = "Hyper-dependency"
+1 -1
View File
@@ -194,7 +194,7 @@
return
if (reason)
to_chat(user, span("notice", reason))
to_chat(user, SPAN_NOTICE(reason))
user << browse(null, "window=greeting")