[s] New blob overminds off the station Z level are moved to the station (#32243)

* [s] New blob overminds are now placed at normal blob spawn points

* Update transform_procs.dm
This commit is contained in:
MoreRobustThanYou
2017-11-02 05:29:33 -04:00
committed by CitadelStationBot
parent cbbf29236e
commit 07efcb0425

View File

@@ -461,7 +461,11 @@
qdel(src)
/mob/proc/become_overmind(starting_points = 60)
var/mob/camera/blob/B = new /mob/camera/blob(loc, starting_points)
var/turf/T = get_turf(loc) //just to avoid messing up in lockers
var/area/A = get_area(T)
if(((A && !A.blob_allowed) || !(T.z in GLOB.station_z_levels)) && LAZYLEN(GLOB.blobstart))
T = get_turf(pick(GLOB.blobstart))
var/mob/camera/blob/B = new /mob/camera/blob(T, starting_points)
B.key = key
. = B
qdel(src)