From 9fdd34b1ba5637fa7a0b2bc31314ce3e9218cae3 Mon Sep 17 00:00:00 2001 From: Segrain Date: Fri, 31 Jan 2014 00:28:25 +0300 Subject: [PATCH] Removal of double reporting. --- code/game/gamemodes/heist/heist.dm | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/code/game/gamemodes/heist/heist.dm b/code/game/gamemodes/heist/heist.dm index 15c97d61cf..bd77584ba6 100644 --- a/code/game/gamemodes/heist/heist.dm +++ b/code/game/gamemodes/heist/heist.dm @@ -240,28 +240,6 @@ VOX HEIST ROUNDTYPE feedback_add_details("traitor_objective","[objective.type]|FAIL") count++ - var/text = "The vox raiders were:" - - for(var/datum/mind/vox in raiders) - text += "
[vox.key] was [vox.name] (" - var/obj/stack = raiders[vox] - if(get_area(stack) != locate(/area/shuttle/vox/station)) - text += "left behind)" - continue - else if(vox.current) - if(vox.current.stat == DEAD) - text += "died" - else - text += "survived" - if(vox.current.real_name != vox.name) - text += " as [vox.current.real_name]" - else - text += "body destroyed" - text += ")" - - world << text - return 1 - ..() datum/game_mode/proc/auto_declare_completion_heist()