Update spider_infestation.dm

This commit is contained in:
Razgriz
2020-11-19 20:36:44 -07:00
committed by GitHub
parent cd746f4dbc
commit a3726c1d91

View File

@@ -19,7 +19,7 @@
for(var/obj/machinery/atmospherics/unary/vent_pump/temp_vent in machines) for(var/obj/machinery/atmospherics/unary/vent_pump/temp_vent in machines)
//CHOMPEdit: Added a couple areas to the exclusion. Also made this actually work. //CHOMPEdit: Added a couple areas to the exclusion. Also made this actually work.
var/in_area = get_area(temp_vent) var/in_area = get_area(temp_vent)
if(istype(in_area, /area/crew_quarters/sleep) || istype(in_area, /area/hallway/secondary/entry) || istype(in_area, /area/hallway/primary/seconddeck/dockhallway)) if(istype(in_area, /area/crew_quarters/sleep) || istype(in_area, /area/hallway/secondary/entry))
continue continue
if(!temp_vent.welded && temp_vent.network && temp_vent.loc.z in using_map.station_levels) if(!temp_vent.welded && temp_vent.network && temp_vent.loc.z in using_map.station_levels)
if(temp_vent.network.normal_members.len > 10) //CHOMP Edit: Most our networks are 40. SM is 4 and toxins is 2. This needed to change in order to spawn. if(temp_vent.network.normal_members.len > 10) //CHOMP Edit: Most our networks are 40. SM is 4 and toxins is 2. This needed to change in order to spawn.