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)