From 8a7e480e02048f7c91c1e5bd09a73debba3cab40 Mon Sep 17 00:00:00 2001 From: Krausus Date: Wed, 10 Jun 2015 10:26:34 -0400 Subject: [PATCH] Fixes shadowling end-round report formatting --- code/game/gamemodes/shadowling/shadowling.dm | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/code/game/gamemodes/shadowling/shadowling.dm b/code/game/gamemodes/shadowling/shadowling.dm index 576dc2dfc5e..42a4a4ee3e5 100644 --- a/code/game/gamemodes/shadowling/shadowling.dm +++ b/code/game/gamemodes/shadowling/shadowling.dm @@ -208,11 +208,11 @@ Made by Xhuis text += "died" else text += "survived" - if(shadow.current.real_name != shadow.name) - text += " as [shadow.current.real_name]" + if(shadow.current.real_name != shadow.name) + text += " as [shadow.current.real_name]" else text += "body destroyed" - text += ")" + text += ")" text += "
" if(shadowling_thralls.len) text += "
The thralls were:" @@ -225,8 +225,9 @@ Made by Xhuis text += "survived" if(thrall.current.real_name != thrall.name) text += " as [thrall.current.real_name]" - else - text += "body destroyed" + else + text += "body destroyed" + text += ")" text += "
" world << text