From 4819cdc228bc6815908bc8003005c7a75f433a73 Mon Sep 17 00:00:00 2001 From: Ghommie <42542238+Ghommie@users.noreply.github.com> Date: Fri, 8 Nov 2019 19:29:52 +0100 Subject: [PATCH] mistakes were made. --- code/__HELPERS/radiation.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/__HELPERS/radiation.dm b/code/__HELPERS/radiation.dm index a1b781c467..4104e267a7 100644 --- a/code/__HELPERS/radiation.dm +++ b/code/__HELPERS/radiation.dm @@ -15,9 +15,10 @@ while(processing_list.len) var/atom/thing = processing_list[1] processing_list -= thing - if(ignored_things[thing.type] || CHECK_BITFIELD(thing.rad_flags, RAD_PROTECT_SELF)) + if(ignored_things[thing.type]) continue - . += thing + if(CHECK_BITFIELD(thing.rad_flags, RAD_PROTECT_SELF)) + . += thing if((thing.rad_flags & RAD_PROTECT_CONTENTS) || (SEND_SIGNAL(thing, COMSIG_ATOM_RAD_PROBE) & COMPONENT_BLOCK_RADIATION)) continue processing_list += thing.contents