From d0dc907e089004c2ab842d972f49f893a503b1ad Mon Sep 17 00:00:00 2001 From: Qwertytoforty Date: Tue, 25 Aug 2020 12:59:12 -0400 Subject: [PATCH 1/2] Prevents blob throwing --- code/game/gamemodes/blob/blobs/blob_mobs.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/gamemodes/blob/blobs/blob_mobs.dm b/code/game/gamemodes/blob/blobs/blob_mobs.dm index 46b1972e565..56d0ca8b822 100644 --- a/code/game/gamemodes/blob/blobs/blob_mobs.dm +++ b/code/game/gamemodes/blob/blobs/blob_mobs.dm @@ -7,6 +7,7 @@ /mob/living/simple_animal/hostile/blob icon = 'icons/mob/blob.dmi' pass_flags = PASSBLOB + status_flags = 0 //No throwing blobspores into deep space to despawn, or throwing blobbernaughts, which are bigger than you. faction = list(ROLE_BLOB) bubble_icon = "blob" atmos_requirements = list("min_oxy" = 0, "max_oxy" = 0, "min_tox" = 0, "max_tox" = 0, "min_co2" = 0, "max_co2" = 0, "min_n2" = 0, "max_n2" = 0) From 99f820ac7135ff34044908d7b9d33bc3c1872a17 Mon Sep 17 00:00:00 2001 From: Qwertytoforty Date: Tue, 25 Aug 2020 13:28:54 -0400 Subject: [PATCH 2/2] 0 to none --- code/game/gamemodes/blob/blobs/blob_mobs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/gamemodes/blob/blobs/blob_mobs.dm b/code/game/gamemodes/blob/blobs/blob_mobs.dm index 56d0ca8b822..d31abe774b8 100644 --- a/code/game/gamemodes/blob/blobs/blob_mobs.dm +++ b/code/game/gamemodes/blob/blobs/blob_mobs.dm @@ -7,7 +7,7 @@ /mob/living/simple_animal/hostile/blob icon = 'icons/mob/blob.dmi' pass_flags = PASSBLOB - status_flags = 0 //No throwing blobspores into deep space to despawn, or throwing blobbernaughts, which are bigger than you. + status_flags = NONE //No throwing blobspores into deep space to despawn, or throwing blobbernaughts, which are bigger than you. faction = list(ROLE_BLOB) bubble_icon = "blob" atmos_requirements = list("min_oxy" = 0, "max_oxy" = 0, "min_tox" = 0, "max_tox" = 0, "min_co2" = 0, "max_co2" = 0, "min_n2" = 0, "max_n2" = 0)