From 256be603dbd64dfb214db6483fa43e7fdb08321f Mon Sep 17 00:00:00 2001 From: Shadowlight213 Date: Sat, 21 Jan 2017 02:53:13 -0800 Subject: [PATCH] Moves linebreak in testmerge MOTD message. (#23160) --- code/world.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/world.dm b/code/world.dm index e5cd898968..f6886a5b8b 100644 --- a/code/world.dm +++ b/code/world.dm @@ -293,9 +293,10 @@ var/inerror = 0 /world/proc/load_motd() join_motd = file2text("config/motd.txt") + join_motd += "
" for(var/line in revdata.testmerge) if(line) - join_motd += "
Test merge active of PR #[line]" + join_motd += "Test merge active of PR #[line]
" /world/proc/load_configuration() protected_config = new /datum/protected_configuration()