From 65adc6689963199df9eb4de66fa34c95ec35cb5a Mon Sep 17 00:00:00 2001 From: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Date: Thu, 6 Apr 2023 19:24:09 +1000 Subject: [PATCH] Merge pull request #14760 from MisterGrimm/xenofixes Makes xeno egg ghost pods anchored --- code/game/objects/structures/ghost_pods/antagonist.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/game/objects/structures/ghost_pods/antagonist.dm b/code/game/objects/structures/ghost_pods/antagonist.dm index 96f68e4af7..e0504537db 100644 --- a/code/game/objects/structures/ghost_pods/antagonist.dm +++ b/code/game/objects/structures/ghost_pods/antagonist.dm @@ -6,11 +6,12 @@ description_info = "This contains a growing xenomorph larva, which may wake up at any moment. The larva will be another player, once activated." icon = 'icons/mob/alien.dmi' icon_state = "egg" - icon_state_opened = "egg_opened" //Can be placed on map with used = 1 for POI decorations + icon_state_opened = "egg_opened" var/health = 50 //So they can be destroyed by the crew density = FALSE ghost_query_type = /datum/ghost_query/xenomorph_larva delay_to_try_again = 1 MINUTES //10 minutes for egg to grow, 5 minutes for larva to mature + anchored = TRUE /obj/structure/ghost_pod/automatic/xenomorph_egg/create_occupant(var/mob/M) var/mob/living/carbon/alien/larva/R = new(get_turf(src))