From 210a790a4a0c64fc367ce2bed9a14e6586d7df20 Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Wed, 1 Feb 2017 22:14:14 -0500 Subject: [PATCH] Adds SS initialization messages to world.log --- code/controllers/subsystem.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/controllers/subsystem.dm b/code/controllers/subsystem.dm index 67a0281d977..f616218bd23 100644 --- a/code/controllers/subsystem.dm +++ b/code/controllers/subsystem.dm @@ -157,6 +157,7 @@ var/time = (world.timeofday - start_timeofday) / 10 var/msg = "Initialized [name] subsystem within [time] seconds!" world << "[msg]" + world.log << msg return time //hook for printing stats to the "MC" statuspanel for admins to see performance and related stats etc.