diff --git a/code/modules/events/solar_storm.dm b/code/modules/events/solar_storm.dm index ce3b9053a2..971e0418bc 100644 --- a/code/modules/events/solar_storm.dm +++ b/code/modules/events/solar_storm.dm @@ -29,9 +29,9 @@ /datum/event/solar_storm/proc/radiate() for(var/mob/living/L in living_mob_list) var/turf/T = get_turf(L) - if(!T || !(T.z in using_map.player_levels)) + if(!T) continue - + if(!istype(T.loc,/area/space) && !istype(T,/turf/space)) //Make sure you're in a space area or on a space turf continue