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
@@ -18,11 +18,11 @@
/spell/rune_write/cast(null, mob/user = usr)
if(!isturf(user.loc))
to_chat(user, span("warning", "You do not have enough space to write a proper rune."))
to_chat(user, SPAN_WARNING("You do not have enough space to write a proper rune."))
var/rune = input(user, "Choose a rune to scribe", "Rune Scribing") as null|anything in SScult.runes_by_name//not cancellable.
if(locate(/obj/effect/rune) in get_turf(user))
to_chat(user, span("warning", "There is already a rune in this location."))
to_chat(user, SPAN_WARNING("There is already a rune in this location."))
return
if(!rune)