[MIRROR] refactors most spans (#9139)

Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com>
Co-authored-by: Kashargul <KashL@t-online.de>
This commit is contained in:
CHOMPStation2
2024-10-04 06:00:17 -07:00
committed by GitHub
parent 43ee646816
commit ab154b48b2
1511 changed files with 12497 additions and 12357 deletions

View File

@@ -104,7 +104,7 @@
set category = "IC.Game" //CHOMPEdit
if((is_blind(src) || usr.stat) && !isobserver(src))
to_chat(src, "<span class='notice'>Something is there but you can't see it.</span>")
to_chat(src, span_notice("Something is there but you can't see it."))
return 1
//Could be gone by the time they finally pick something
@@ -115,7 +115,7 @@
var/list/results = A.examine(src)
if(!results || !results.len)
results = list("You were unable to examine that. Tell a developer!")
var/final_string = "<span class='infoplain'>[jointext(results, "<br>")]</span>"
var/final_string = span_infoplain("[jointext(results, "<br>")]")
if(ismob(A)) // mob descriptions matter more than others
final_string = examine_block(final_string)
to_chat(src, final_string)
@@ -134,7 +134,7 @@
set popup_menu = FALSE
if((is_blind(src) || src.stat) && !isobserver(src))
to_chat(src, "<span class='notice'>Something is there but you can't see it.</span>")
to_chat(src, span_notice("Something is there but you can't see it."))
return 1
var/list/E = list()
if(isAI(src))