From 7b46801c35e7088ba1aa63abb58ab34eac0144f5 Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Fri, 3 Nov 2017 15:22:34 -0500 Subject: [PATCH 1/2] Prints out cultist names at round end (#32355) --- code/game/gamemodes/cult/cult.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/game/gamemodes/cult/cult.dm b/code/game/gamemodes/cult/cult.dm index 917b5a81a4..717b9ddea3 100644 --- a/code/game/gamemodes/cult/cult.dm +++ b/code/game/gamemodes/cult/cult.dm @@ -256,6 +256,10 @@ SSticker.news_report = CULT_FAILURE text += "
Objective #[obj_count]: [explanation]" + if(cult.len) + text += "
The cultists were:" + for(var/datum/mind/M in cult) + text += printplayer(M) to_chat(world, text) ..() return 1