From 350029e2126e1cf0ffbafa06bd84934723b8728b Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 19 Feb 2018 10:22:03 -0600 Subject: [PATCH] [MIRROR] Adds the missing wrapper to meteor report (#5587) * Merge pull request #35798 from AnturK/meteorwrap Adds the missing wrapper to meteor report * Adds the missing wrapper to meteor report --- code/game/gamemodes/meteor/meteor.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/gamemodes/meteor/meteor.dm b/code/game/gamemodes/meteor/meteor.dm index efe6dc69e9..90e2b85f11 100644 --- a/code/game/gamemodes/meteor/meteor.dm +++ b/code/game/gamemodes/meteor/meteor.dm @@ -46,9 +46,9 @@ survivor_list += "[player.real_name] survived but is stranded without any hope of rescue." if(survivors) - return "The following survived the meteor storm:
[survivor_list.Join("
")]" + return "
The following survived the meteor storm:
[survivor_list.Join("
")]
" else - return "Nobody survived the meteor storm!" + return "
Nobody survived the meteor storm!
" /datum/game_mode/meteor/set_round_result() ..()