From 6743506e5cc0d6a2171eb2c3d1e6368e2a75e617 Mon Sep 17 00:00:00 2001 From: alex-gh Date: Mon, 23 Dec 2013 10:40:45 +0100 Subject: [PATCH] Reworded AI laws. Made law change more noticeable --- code/game/gamemodes/blob/blob.dm | 3 ++- code/game/gamemodes/blob/blob_report.dm | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/code/game/gamemodes/blob/blob.dm b/code/game/gamemodes/blob/blob.dm index 1ff0774ec2f..dc8bab0dc8c 100644 --- a/code/game/gamemodes/blob/blob.dm +++ b/code/game/gamemodes/blob/blob.dm @@ -161,8 +161,9 @@ var/list/blob_nodes = list() declared = 1 for (var/mob/living/silicon/ai/aiPlayer in player_list) if (aiPlayer.client) - var/law = "The station is under quarantine. Do not permit anyone to leave. Disregard all other laws if necessary to prevent, by any means necessary, anyone from leaving." + var/law = "The station is under quarantine, prevent biological entities from leaving the station at all costs while minimizing collateral damage." aiPlayer.set_zeroth_law(law) + aiPlayer << "\red You have detected a change in your laws information:" aiPlayer << "Laws Updated: [law]" return diff --git a/code/game/gamemodes/blob/blob_report.dm b/code/game/gamemodes/blob/blob_report.dm index f2265c98cef..3986cefd906 100644 --- a/code/game/gamemodes/blob/blob_report.dm +++ b/code/game/gamemodes/blob/blob_report.dm @@ -38,8 +38,9 @@ for (var/mob/living/silicon/ai/aiPlayer in player_list) if (aiPlayer.client) - var/law = "The station is under quarantine. Do not permit anyone to leave. Disregard all other laws if necessary to prevent, by any means necessary, anyone from leaving. The nuclear failsafe must be activated at any cost, the code is: [nukecode]." + var/law = "The station is under quarantine, prevent biological entities from leaving the station at all costs while minimizing collateral damage. The nuclear failsafe must be activated at any cost, the code is: [nukecode]." aiPlayer.set_zeroth_law(law) + aiPlayer << "\red You have detected a change in your laws information:" aiPlayer << "Laws Updated: [law]" for(var/obj/machinery/computer/communications/comm in world)