From 2779d58bacbc75873d1ae1dc3f8f993725c9e172 Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Fri, 5 May 2017 17:33:08 -0400 Subject: [PATCH] Fixes log files not generating with default config --- code/world.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/world.dm b/code/world.dm index 25261de6939..42326f6ba69 100644 --- a/code/world.dm +++ b/code/world.dm @@ -42,7 +42,7 @@ else log_world("Your server failed to establish a connection with the database.") if(!GLOB.round_id) - GLOB.log_directory += "[time_stamp()]" + GLOB.log_directory += "[replacetext(time_stamp(), ":", ".")]" GLOB.world_game_log = file("[GLOB.log_directory]/game.log") GLOB.world_attack_log = file("[GLOB.log_directory]/attack.log") GLOB.world_runtime_log = file("[GLOB.log_directory]/runtime.log")