From daa1b05673d49a586d122afa4ab0f4361b55a465 Mon Sep 17 00:00:00 2001 From: MeowEmiya <141228606+MeowEmiya@users.noreply.github.com> Date: Fri, 22 Nov 2024 10:40:29 +0400 Subject: [PATCH] Carrier buff (#658) --- code/modules/mob/living/carbon/xenomorph/embryo.dm | 2 +- code/modules/mob/living/carbon/xenomorph/facehuggers.dm | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/code/modules/mob/living/carbon/xenomorph/embryo.dm b/code/modules/mob/living/carbon/xenomorph/embryo.dm index c84b898d281..ca3a6e056df 100644 --- a/code/modules/mob/living/carbon/xenomorph/embryo.dm +++ b/code/modules/mob/living/carbon/xenomorph/embryo.dm @@ -86,7 +86,7 @@ counter += 2.5 //Doubles larval growth progress. Burst time in ~3 min. adjust_boost_timer(-1) - if(stage < 5 && counter >= 120) + if(stage < 5 && counter >= 100) counter = 0 stage++ log_combat(affected_mob, null, "had their embryo advance to stage [stage]") diff --git a/code/modules/mob/living/carbon/xenomorph/facehuggers.dm b/code/modules/mob/living/carbon/xenomorph/facehuggers.dm index ba2455e966a..a5d19a964ac 100644 --- a/code/modules/mob/living/carbon/xenomorph/facehuggers.dm +++ b/code/modules/mob/living/carbon/xenomorph/facehuggers.dm @@ -448,9 +448,6 @@ if(species?.species_flags & (IS_SYNTHETIC|ROBOTIC_LIMBS)) return FALSE - if(on_fire) - return FALSE - if(check_mask) if(wear_mask) var/obj/item/W = wear_mask @@ -667,9 +664,6 @@ proj.ammo.on_hit_obj(src, proj) return TRUE -/obj/item/clothing/mask/facehugger/fire_act(burn_level, flame_color) - kill_hugger() - /obj/item/clothing/mask/facehugger/dropped(mob/user) . = ..() go_idle()