From f7d70d14544efb8817096fe01263950b30899b94 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sun, 14 Jan 2018 00:21:43 -0500 Subject: [PATCH 1/2] Merge pull request #34407 from optimumtact/anturredtextsmyevent Make traitor panel clearer when toggling completion state --- code/datums/mind.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/mind.dm b/code/datums/mind.dm index cc58c9445d..2258d87d72 100644 --- a/code/datums/mind.dm +++ b/code/datums/mind.dm @@ -745,7 +745,7 @@ else var/obj_count = 1 for(var/datum/objective/objective in objectives) - out += "[obj_count]: [objective.explanation_text] Edit Delete Toggle Completion
" + out += "[obj_count]: [objective.explanation_text] Edit Delete [objective.completed ? "Mark as incomplete" : "Mark as complete"]
" obj_count++ out += "Add objective

"