From 0af9d2ade6bab56ce8d1545b7f623ddcf99b09ff Mon Sep 17 00:00:00 2001 From: Ryal Date: Fri, 26 Feb 2021 07:30:51 -0800 Subject: [PATCH] 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 --- code/game/gamemodes/blob/blobs/blob_mobs.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/game/gamemodes/blob/blobs/blob_mobs.dm b/code/game/gamemodes/blob/blobs/blob_mobs.dm index 963a56f9cbd..cdc8caaaf74 100644 --- a/code/game/gamemodes/blob/blobs/blob_mobs.dm +++ b/code/game/gamemodes/blob/blobs/blob_mobs.dm @@ -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 //