diff --git a/code/modules/ninja/ninja_event.dm b/code/modules/ninja/ninja_event.dm index 6098693a310a..9f56c30464c5 100644 --- a/code/modules/ninja/ninja_event.dm +++ b/code/modules/ninja/ninja_event.dm @@ -42,6 +42,13 @@ Contents: for(var/obj/effect/landmark/carpspawn/L in GLOB.landmarks_list) if(isturf(L.loc)) spawn_locs += L.loc + + for(var/X in GLOB.xeno_spawn) + var/turf/T = X + var/light_amount = T.get_lumcount() + if(light_amount < SHADOW_SPECIES_DIM_LIGHT) + spawn_locs += T + if(!spawn_locs.len) return kill() spawn_loc = pick(spawn_locs)