Bloodsuckers objective tweaks and added epilogues (#14837)

* finally

* skrem writing

Co-authored-by: Skrem_7 <98909416+Skrem7@users.noreply.github.com>

* skriting

Co-authored-by: Skrem_7 <98909416+Skrem7@users.noreply.github.com>

* skriting

Co-authored-by: Skrem_7 <98909416+Skrem7@users.noreply.github.com>

* i just now learned how to batch suggestions

Co-authored-by: Skrem_7 <98909416+Skrem7@users.noreply.github.com>

* ttt code

Co-authored-by: tattax <71668564+tattax@users.noreply.github.com>

* never forget

* undoing broken code just in case

Co-authored-by: Skrem_7 <98909416+Skrem7@users.noreply.github.com>
Co-authored-by: tattax <71668564+tattax@users.noreply.github.com>
This commit is contained in:
Chubbygummibear
2022-07-23 04:39:55 -07:00
committed by GitHub
parent dc58de2267
commit 54e8a8e7fa
4 changed files with 89 additions and 11 deletions

View File

@@ -614,9 +614,9 @@
var/count = 1
for(var/datum/objective/objective in objectives)
if(objective.check_completion())
objective_parts += "<b>Objective #[count]</b>: [objective.explanation_text] [span_greentext("Success!")]"
objective_parts += "<b>[objective.objective_name] #[count]</b>: [objective.explanation_text] [span_greentext("Success!")]"
else
objective_parts += "<b>Objective #[count]</b>: [objective.explanation_text] [span_redtext("Fail.")]"
objective_parts += "<b>[objective.objective_name] #[count]</b>: [objective.explanation_text] [span_redtext("Fail.")]"
count++
return objective_parts.Join("<br>")