From 06295ca4339a01edb2a4b2379f18f6a3f5c2fffb Mon Sep 17 00:00:00 2001 From: DeltaFire Date: Fri, 13 Nov 2020 17:45:04 +0100 Subject: [PATCH] no species effects from radiation for robots --- code/modules/mob/living/carbon/human/species.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm index 398fb8dcb1..604babbf75 100644 --- a/code/modules/mob/living/carbon/human/species.dm +++ b/code/modules/mob/living/carbon/human/species.dm @@ -1284,6 +1284,9 @@ GLOBAL_LIST_EMPTY(roundstart_race_names) radiation = 0 return TRUE + if(HAS_TRAIT(H, TRAIT_ROBOTIC_ORGANISM)) + return //Robots are hardened against radiation, but suffer system corruption at very high levels. + if(radiation > RAD_MOB_KNOCKDOWN && prob(RAD_MOB_KNOCKDOWN_PROB)) if(CHECK_MOBILITY(H, MOBILITY_STAND)) H.emote("collapse")