From eff36c6eb1737bc41576d407e3a50c4f1635eec5 Mon Sep 17 00:00:00 2001
From: Sharkmare <34294231+Sharkmare@users.noreply.github.com>
Date: Thu, 21 Jan 2021 13:40:15 +0100
Subject: [PATCH] Removes the parts of round end that dox sillicons
Removes the parts of round end that dox sillicons
---
code/controllers/subsystems/ticker.dm | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/code/controllers/subsystems/ticker.dm b/code/controllers/subsystems/ticker.dm
index 5d6aaf1fc3..fcc076231d 100644
--- a/code/controllers/subsystems/ticker.dm
+++ b/code/controllers/subsystems/ticker.dm
@@ -470,15 +470,15 @@ var/global/datum/controller/subsystem/ticker/ticker
for (var/mob/living/silicon/ai/aiPlayer in mob_list)
if (aiPlayer.stat != 2)
- to_world("[aiPlayer.name] (Played by: [aiPlayer.key])'s laws at the end of the round were:")
+ to_world("[aiPlayer.name]'s laws at the end of the round were:") //CHOMPedit: stop doxxing of silicons
else
- to_world("[aiPlayer.name] (Played by: [aiPlayer.key])'s laws when it was deactivated were:")
+ to_world("[aiPlayer.name]'s laws when it was deactivated were:") //CHOMPedit: stop doxxing of silicons
aiPlayer.show_laws(1)
if (aiPlayer.connected_robots.len)
var/robolist = "The AI's loyal minions were: "
for(var/mob/living/silicon/robot/robo in aiPlayer.connected_robots)
- robolist += "[robo.name][robo.stat?" (Deactivated) (Played by: [robo.key]), ":" (Played by: [robo.key]), "]"
+ robolist += "[robo.name][robo.stat?" (Deactivated), ":" , "]" //CHOMPedit: stop doxxing of silicons
to_world("[robolist]")
var/dronecount = 0
@@ -491,9 +491,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:") //CHOMPedit: stop doxxing of silicons
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:") //CHOMPedit: stop doxxing of silicons
if(robo) //How the hell do we lose robo between here and the world messages directly above this?
robo.laws.show_laws(world)