From 8dff4df95cbc59af81276e476a298e1b913000f2 Mon Sep 17 00:00:00 2001 From: SmArtKar <44720187+SmArtKar@users.noreply.github.com> Date: Fri, 4 Oct 2024 02:40:26 +0200 Subject: [PATCH] Fixes luminiscent major extract activation action not disappearing/updating (#86998) ## About The Pull Request Closes #86993 ## Changelog :cl: fix: Fixed luminiscent major extract activation button not disappearing/updating when it should've /:cl: --- .../mob/living/carbon/human/species_types/jellypeople.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/species_types/jellypeople.dm b/code/modules/mob/living/carbon/human/species_types/jellypeople.dm index b7c97b6451b..3b1f8fe4037 100644 --- a/code/modules/mob/living/carbon/human/species_types/jellypeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/jellypeople.dm @@ -528,7 +528,7 @@ var/datum/action/innate/use_extract/major/extract_major = new(src) extract_major.Grant(new_jellyperson) - luminescent_actions += integrate_extract + luminescent_actions += extract_major /datum/species/jelly/luminescent/on_species_loss(mob/living/carbon/C) . = ..()