From b76013eed7598227012876a052dd29dbb5bee6ee Mon Sep 17 00:00:00 2001 From: Hayden Redacted <91229275+haydenredacted@users.noreply.github.com> Date: Mon, 1 Jun 2026 20:04:41 -0400 Subject: [PATCH] initial commit (#32018) --- code/modules/reagents/chemistry/reagents/water.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/chemistry/reagents/water.dm b/code/modules/reagents/chemistry/reagents/water.dm index 19ad781c571..9052294dd21 100644 --- a/code/modules/reagents/chemistry/reagents/water.dm +++ b/code/modules/reagents/chemistry/reagents/water.dm @@ -214,9 +214,9 @@ blood_prop = new(T) blood_prop.blood_DNA["UNKNOWN DNA STRUCTURE"] = "X*" -/// If irradiated by gamma radiation and there are advanced viruses in the blood become a sample of viral genetic data +/// If irradiated by beta radiation and there are advanced viruses in the blood become a sample of viral genetic data /datum/reagent/blood/reaction_radiation(amount, emission_type) - if(emission_type == GAMMA_RAD && amount > 100) + if(emission_type == BETA_RAD && amount > 100) if(data && data["viruses"]) var/list/strains = list("radiation" = list()) for(var/datum/disease/advance/virus in data["viruses"])