From ec1439823152b8ae7e86bbfe1ba16790770a53fa Mon Sep 17 00:00:00 2001 From: alex-gh Date: Mon, 24 Mar 2014 01:17:15 +0100 Subject: [PATCH] Blob announcement changes. --- code/game/gamemodes/blob/blob.dm | 4 ++-- code/game/gamemodes/blob/blob_report.dm | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/gamemodes/blob/blob.dm b/code/game/gamemodes/blob/blob.dm index 6b6db7d0768..5abacbeae6a 100644 --- a/code/game/gamemodes/blob/blob.dm +++ b/code/game/gamemodes/blob/blob.dm @@ -175,10 +175,10 @@ var/list/blob_nodes = list() return if (1) - command_alert("Confirmed outbreak of level 7 biohazard aboard [station_name()]. All personnel must contain the outbreak.", "Biohazard Alert") + command_alert("NanoTrasen has issued a directive 7-10 for [station_name()]. The station is to be considered quarantined.", "Biohazard Alert") for(var/mob/M in player_list) if(!istype(M,/mob/new_player)) - M << sound('sound/AI/outbreak7.ogg') + M << sound('sound/AI/blob_confirmed.ogg') return if (2) diff --git a/code/game/gamemodes/blob/blob_report.dm b/code/game/gamemodes/blob/blob_report.dm index 36c6f458544..4f32d870afe 100644 --- a/code/game/gamemodes/blob/blob_report.dm +++ b/code/game/gamemodes/blob/blob_report.dm @@ -32,7 +32,7 @@ intercepttext += "Message ends." for (var/mob/living/silicon/ai/aiPlayer in player_list) if (aiPlayer.client) - 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: [get_nuke_code()]." + var/law = "The station is under quarantine, prevent biological entities from leaving the station at all costs. The nuclear failsafe must be activated at any cost, the code is: [get_nuke_code()]." aiPlayer.set_zeroth_law(law) aiPlayer << "\red You have detected a change in your laws information:" aiPlayer << "Laws Updated: [law]"