From 9d659ec0ed580f7b3eec6b1192c751d23dacf487 Mon Sep 17 00:00:00 2001 From: Little-119 Date: Wed, 31 Mar 2021 23:17:01 -0400 Subject: [PATCH] Don't tell the whole world who was playing synthetics --- code/controllers/subsystems/ticker.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/controllers/subsystems/ticker.dm b/code/controllers/subsystems/ticker.dm index d499f03d4d6..54680b6506a 100644 --- a/code/controllers/subsystems/ticker.dm +++ b/code/controllers/subsystems/ticker.dm @@ -488,9 +488,9 @@ var/global/datum/controller/subsystem/ticker/ticker if (!robo.connected_ai) if (robo.stat != 2) - to_world("[robo.name] (Played by: [robo.key]) survived as an AI-less stationbound synthetic! Its laws were:") + to_world("[robo.name] survived as an AI-less stationbound synthetic! Its laws were:") else - to_world("[robo.name] (Played by: [robo.key]) was unable to survive the rigors of being a stationbound synthetic without an AI. Its laws were:") + to_world("[robo.name] was unable to survive the rigors of being a stationbound synthetic without an AI. Its laws were:") if(robo) //How the hell do we lose robo between here and the world messages directly above this? robo.laws.show_laws(world)