From 850bc7c5ad765c1d93f7040b2ddb32dd3ab40939 Mon Sep 17 00:00:00 2001 From: Cameron Lennox Date: Mon, 3 Nov 2025 15:29:27 -0500 Subject: [PATCH] Hotfixes glowing (#18723) --- .../mob/living/carbon/human/species/station/traits/neutral.dm | 2 +- .../living/carbon/human/species/station/traits/positive.dm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species/station/traits/neutral.dm b/code/modules/mob/living/carbon/human/species/station/traits/neutral.dm index 20c4f8d7c24..37d6957d11f 100644 --- a/code/modules/mob/living/carbon/human/species/station/traits/neutral.dm +++ b/code/modules/mob/living/carbon/human/species/station/traits/neutral.dm @@ -1800,7 +1800,7 @@ name = "Radioactive Glow" desc = "You emit a glow when exposed to radiation! This does not prevent you from being harmed by radiation." cost = 0 - has_preferences = list("glow_color" = list(TRAIT_PREF_TYPE_COLOR, "Glow color", TRAIT_VAREDIT_TARGET_MOB, "#c3f314")) + has_preferences = list("glow_color" = list(TRAIT_PREF_TYPE_COLOR, "Glow color", TRAIT_NO_VAREDIT_TARGET, "#c3f314")) added_component_path = /datum/component/radiation_effects excludes = list(/datum/trait/positive/radioactive_heal) diff --git a/code/modules/mob/living/carbon/human/species/station/traits/positive.dm b/code/modules/mob/living/carbon/human/species/station/traits/positive.dm index cb8d1921f79..7636a42a13f 100644 --- a/code/modules/mob/living/carbon/human/species/station/traits/positive.dm +++ b/code/modules/mob/living/carbon/human/species/station/traits/positive.dm @@ -549,8 +549,8 @@ cost = 6 is_genetrait = TRUE hidden = FALSE - has_preferences = list("glow_color" = list(TRAIT_PREF_TYPE_COLOR, "Glow color", TRAIT_VAREDIT_TARGET_MOB, "#c3f314",), - "glow_enabled" = list(TRAIT_PREF_TYPE_BOOLEAN, "Glow enabled on spawn", TRAIT_VAREDIT_TARGET_MOB, FALSE)) + has_preferences = list("glow_color" = list(TRAIT_PREF_TYPE_COLOR, "Glow color", TRAIT_NO_VAREDIT_TARGET, "#c3f314",), + "glow_enabled" = list(TRAIT_PREF_TYPE_BOOLEAN, "Glow enabled on spawn", TRAIT_NO_VAREDIT_TARGET, FALSE)) added_component_path = /datum/component/radiation_effects excludes = list(/datum/trait/neutral/glowing_radiation, /datum/trait/positive/rad_resistance, /datum/trait/positive/rad_resistance_extreme, /datum/trait/positive/rad_immune, /datum/trait/negative/rad_weakness)