diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index 3b0d161dfd..889c05a397 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -291,7 +291,7 @@ var/damage = 0 radiation -= 1 * RADIATION_SPEED_COEFFICIENT - if(prob(25)) + if(radiation > 2.5 && prob(25)) // Safe for a little over 2m at the recommended maximum safe dosage of 0.05Bq damage = 1 if (radiation > 50) diff --git a/html/changelogs/atermonera - rad_tweaks.yml b/html/changelogs/atermonera - rad_tweaks.yml new file mode 100644 index 0000000000..28dac7da68 --- /dev/null +++ b/html/changelogs/atermonera - rad_tweaks.yml @@ -0,0 +1,5 @@ +author: Atermonera +delete-after: True +changes: + - tweak: "Radiation has to accumulate at least a little bit before it starts to become damaging. Very low levels of radiation can be safe for a number of minutes before you are at risk of injury." + - bugfix: "Unless you idle for several minutes near the supermatter before it's been turned on, you should no longer be at risk of taking toxloss (Including those few spots in cargo maintenance)."