From a5995b8e216f06bbdf61c009bed466ad643c5e6b Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Wed, 8 Jun 2016 02:47:34 -0400 Subject: [PATCH] Don't echo things to everyone on the server Nobody knows what to do about your hung object processing, sry. --- code/controllers/ProcessScheduler/core/_stubs.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/controllers/ProcessScheduler/core/_stubs.dm b/code/controllers/ProcessScheduler/core/_stubs.dm index 3615c12f19..60bb92b6df 100644 --- a/code/controllers/ProcessScheduler/core/_stubs.dm +++ b/code/controllers/ProcessScheduler/core/_stubs.dm @@ -14,6 +14,6 @@ */ /proc/logTheThing(type, source, target, text, diaryType) if(diaryType) - world << "Diary: \[[diaryType]:[type]] [text]" + world.log << "Diary: \[[diaryType]:[type]] [text]" else - world << "Log: \[[type]] [text]" + world.log << "Log: \[[type]] [text]"