Properly closes some bold tags. (#12088)

* Fixes some unmatched <b>s

* remember to ctrl+s
This commit is contained in:
Putnam3145
2020-05-02 05:53:17 -07:00
committed by GitHub
parent 21c9c98412
commit c1d1e4f0c0
8 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -563,7 +563,7 @@
if(objective.completable)
var/completion = objective.check_completion()
if(completion >= 1)
objective_parts += "<B>Objective #[count]</B>: [objective.explanation_text] <span class='greentext'><B>Success!</span>"
objective_parts += "<B>Objective #[count]</B>: [objective.explanation_text] <span class='greentext'><B>Success!</B></span>"
else if(completion <= 0)
objective_parts += "<B>Objective #[count]</B>: [objective.explanation_text] <span class='redtext'>Fail.</span>"
else