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
@@ -67,7 +67,7 @@
if(is_bruised() && rescued)
if(prob(4))
to_chat(owner, span("warning", "It feels hard to breathe..."))
to_chat(owner, SPAN_WARNING("It feels hard to breathe..."))
if (owner.losebreath < 5)
owner.losebreath = min(owner.losebreath + 1, 5) // it's still not good, but it's much better than an untreated collapsed lung
@@ -155,7 +155,7 @@
if(inhale_efficiency < 0.8)
owner.emote("gasp")
else if(prob(20))
to_chat(owner, span("warning", "It's hard to breathe..."))
to_chat(owner, SPAN_WARNING("It's hard to breathe..."))
breath_fail_ratio = 1 - inhale_efficiency
failed_inhale = 1
else