diff --git a/code/game/gamemodes/blob/blob.dm b/code/game/gamemodes/blob/blob.dm
index 57142c95a7d..870b01faab1 100644
--- a/code/game/gamemodes/blob/blob.dm
+++ b/code/game/gamemodes/blob/blob.dm
@@ -55,6 +55,13 @@ var/list/blob_nodes = list()
return 1
+/datum/game_mode/blob/proc/get_nuke_code()
+ var/nukecode = "ERROR"
+ for(var/obj/machinery/nuclearbomb/bomb in world)
+ if(bomb && bomb.r_code && bomb.z == 1)
+ nukecode = bomb.r_code
+ return nukecode
+
/datum/game_mode/blob/announce()
world << "The current game mode is - Blob!"
@@ -175,9 +182,10 @@ var/list/blob_nodes = list()
return
if (2)
- command_alert("The biohazard has grown out of control and will soon reach critical mass. Activate the nuclear failsafe to mantain quarantine.", "Biohazard Alert")
- set_security_level("delta")
+ command_alert("The biohazard has grown out of control and will soon reach critical mass. Activate the nuclear failsafe to mantain quarantine. The Nuclear Authentication Code is [get_nuke_code()] ", "Biohazard Alert")
+ set_security_level("gamma")
send_intercept(2)
+ spawn(10) world << sound('sound/effects/siren.ogg')
return
return
diff --git a/code/game/gamemodes/blob/blob_report.dm b/code/game/gamemodes/blob/blob_report.dm
index d16a64272c0..36c6f458544 100644
--- a/code/game/gamemodes/blob/blob_report.dm
+++ b/code/game/gamemodes/blob/blob_report.dm
@@ -11,7 +11,7 @@
interceptname = "Biohazard Alert"
intercepttext += "NanoTrasen Update: Biohazard Alert.
"
intercepttext += "Reports indicate the probable transfer of a biohazardous agent onto [station_name()] during the last crew deployment cycle.
"
- intercepttext += "Preliminary analysis of the organism classifies it as a level 5 biohazard. Its origin is unknown.
"
+ intercepttext += "Preliminary analysis of the organism classifies it as a level 7 biohazard. Its origin is unknown.
"
intercepttext += "NanoTrasen has issued a directive 7-10 for [station_name()]. The station is to be considered quarantined.
"
intercepttext += "Orders for all [station_name()] personnel follows:
"
intercepttext += " 1. Do not leave the quarantine area.
"
@@ -21,11 +21,6 @@
intercepttext += "
Note in the event of a quarantine breach or uncontrolled spread of the biohazard, the directive 7-10 may be upgraded to a directive 7-12.
"
intercepttext += "Message ends."
if(2)
- var/nukecode = "ERROR"
- for(var/obj/machinery/nuclearbomb/bomb in world)
- if(bomb && bomb.r_code)
- if(bomb.z == 1)
- nukecode = bomb.r_code
interceptname = "Directive 7-12"
intercepttext += "NanoTrasen Update: Biohazard Alert.
"
intercepttext += "Directive 7-12 has been issued for [station_name()].
"
@@ -33,12 +28,11 @@
intercepttext += "Your orders are as follows:
"
intercepttext += "1. Secure the Nuclear Authentication Disk.
"
intercepttext += "2. Detonate the Nuke located in the Station's Vault.
"
- intercepttext += "Nuclear Authentication Code: [nukecode]
"
+ intercepttext += "Nuclear Authentication Code: [get_nuke_code()]
"
intercepttext += "Message ends."
- spawn(10) world << sound('sound/effects/siren.ogg')
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: [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: [get_nuke_code()]."
aiPlayer.set_zeroth_law(law)
aiPlayer << "\red You have detected a change in your laws information:"
aiPlayer << "Laws Updated: [law]"