Allows blob mobs to move via blob tiles in zero-g (#15506)

* Allows blob mobs to move via blob tiles in zero-g

* Update blob_mobs.dm
This commit is contained in:
Ryal
2021-02-26 07:30:51 -08:00
committed by GitHub
parent 3c87d9a396
commit 0af9d2ade6
@@ -34,6 +34,11 @@
H.color = "#000000"
adjustHealth(-maxHealth * 0.0125)
/mob/living/simple_animal/hostile/blob/Process_Spacemove(movement_dir = 0)
// Use any nearby blob structures to allow space moves.
for(var/obj/structure/blob/B in range(1, src))
return TRUE
return ..()
////////////////
// BLOB SPORE //