adjust numbers, fix shuttle dropoffs

This commit is contained in:
Kraseo
2020-03-07 20:31:49 +01:00
parent c9cad7a0ff
commit a5ef41c0fc
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -1168,7 +1168,7 @@ GLOBAL_LIST_EMPTY(possible_sabotages)
var/found = FALSE
while(!found)
var/area/dropoff_area = pick(GLOB.sortedAreas)
if(dropoff_area && is_station_level(dropoff_area.z) && !dropoff_area.outdoors)
if(dropoff_area && is_station_level(dropoff_area.z) && !dropoff_area.outdoors && !istype(dropoff_area, /area/shuttle/))
dropoff = dropoff_area
found = TRUE