From 09910de497ad3747f839e09c2d78f3fe2e5faaea Mon Sep 17 00:00:00 2001 From: Rob Palkowski Date: Fri, 18 May 2012 00:37:58 -0700 Subject: [PATCH 1/3] Make the message for AI most less metagame-inspiring. The old message was pretty much an IC "Go kill your AI now" carte blanche. The new one allows for a sneaky AI to actually, with care, sneak to victory rather than trying to find the quickest way to slaughter all staiton personnel. --- code/game/gamemodes/malfunction/malfunction.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/gamemodes/malfunction/malfunction.dm b/code/game/gamemodes/malfunction/malfunction.dm index 31172c7ddc..b7bd6f71fe 100644 --- a/code/game/gamemodes/malfunction/malfunction.dm +++ b/code/game/gamemodes/malfunction/malfunction.dm @@ -71,7 +71,7 @@ sleep(10 * 60 * 20) // 30 minutes command_alert("Diagnosis suite failure detected. Running backup diagnosis tool.", "Anomaly Alert") sleep(100) - command_alert("AI unit diagnosis failed. Unable to detect morality cores. Disabling of unit recommended.", "Anomaly Alert") + command_alert("Nanotrasen has received reports that some AI cores may have been tampered with. You are advised to monitor your assigned AI for any abberant bahavior, and are authorized to take corrective action, should it be necessary.", "Security Alert") ..() From dd20605fd4be10972ef9e267125b4568cdf1035e Mon Sep 17 00:00:00 2001 From: Rob Palkowski Date: Fri, 18 May 2012 00:37:58 -0700 Subject: [PATCH 2/3] Make the message for AI mode less metagame-inspiring. The old message was pretty much an IC "Go kill your AI now" carte blanche. The new one allows for a sneaky AI to actually, with care, sneak to victory rather than trying to find the quickest way to slaughter all staiton personnel. --- code/game/gamemodes/malfunction/malfunction.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/gamemodes/malfunction/malfunction.dm b/code/game/gamemodes/malfunction/malfunction.dm index 31172c7ddc..b7bd6f71fe 100644 --- a/code/game/gamemodes/malfunction/malfunction.dm +++ b/code/game/gamemodes/malfunction/malfunction.dm @@ -71,7 +71,7 @@ sleep(10 * 60 * 20) // 30 minutes command_alert("Diagnosis suite failure detected. Running backup diagnosis tool.", "Anomaly Alert") sleep(100) - command_alert("AI unit diagnosis failed. Unable to detect morality cores. Disabling of unit recommended.", "Anomaly Alert") + command_alert("Nanotrasen has received reports that some AI cores may have been tampered with. You are advised to monitor your assigned AI for any abberant bahavior, and are authorized to take corrective action, should it be necessary.", "Security Alert") ..() From 0822991081318b2e9bf4b33af183320fa092a37d Mon Sep 17 00:00:00 2001 From: Rob Palkowski Date: Fri, 18 May 2012 02:44:15 -0700 Subject: [PATCH 3/3] Grammar fix to CPR message --- code/modules/mob/living/carbon/human/human.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 7a057f2b82..1d1651d2ac 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -1728,7 +1728,7 @@ //SN src = null del(src) return - message = text("\red [] is trying perform CPR on []!", source, target) + message = text("\red [] is trying to perform CPR on []!", source, target) if("id") target.attack_log += text("\[[time_stamp()]\] Has had their ID removed by [source.name] ([source.ckey])") source.attack_log += text("\[[time_stamp()]\] Attempted to remove [target.name]'s ([target.ckey]) ID")