From 3f1d060a3869f80f986160a46c4e2af38f86ed0d Mon Sep 17 00:00:00 2001 From: DeltaFire Date: Fri, 17 Sep 2021 21:02:58 +0200 Subject: [PATCH] hey raspy why can plastic golems always ventcrawl --- code/modules/mob/living/carbon/human/species_types/golems.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species_types/golems.dm b/code/modules/mob/living/carbon/human/species_types/golems.dm index fba6ecd40c..ac25c9e021 100644 --- a/code/modules/mob/living/carbon/human/species_types/golems.dm +++ b/code/modules/mob/living/carbon/human/species_types/golems.dm @@ -807,11 +807,11 @@ /datum/species/golem/plastic/on_species_gain(mob/living/carbon/C, datum/species/old_species) . = ..() - C.AddElement(/datum/element/ventcrawling, given_tier = VENTCRAWLER_ALWAYS) + C.AddElement(/datum/element/ventcrawling, given_tier = VENTCRAWLER_NUDE) /datum/species/golem/plastic/on_species_loss(mob/living/carbon/C) . = ..() - C.RemoveElement(/datum/element/ventcrawling, given_tier = VENTCRAWLER_ALWAYS) + C.RemoveElement(/datum/element/ventcrawling, given_tier = VENTCRAWLER_NUDE) /datum/species/golem/bronze name = "Bronze Golem"