From 0475aced6ff46e3a51fa52d39b0724161833aabc Mon Sep 17 00:00:00 2001 From: Ryumi Date: Thu, 6 Nov 2025 16:36:36 -0600 Subject: [PATCH] Allows Gamma replicants to take Aquatic trait (#18740) * Allows Gamma replicants to take Aquatic trait * woops!! --------- Co-authored-by: ShadowLarkens --- .../living/carbon/human/species/station/traits/positive.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 7636a42a13f..63845fa3870 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 @@ -263,7 +263,7 @@ cost = 1 custom_only = FALSE var_changes = list("water_breather" = 1, "water_movement" = -4) //Negate shallow water. Half the speed in deep water. - allowed_species = list(SPECIES_HANNER, SPECIES_CUSTOM) //So it only shows up for custom species and hanner + allowed_species = list(SPECIES_HANNER, SPECIES_CUSTOM, SPECIES_REPLICANT_CREW) //So it only shows up for custom species, hanner, and Gamma replicants custom_only = FALSE excludes = list(/datum/trait/positive/good_swimmer, /datum/trait/negative/bad_swimmer, /datum/trait/positive/aquatic/plus) @@ -278,7 +278,7 @@ cost = 2 custom_only = FALSE var_changes = list("water_breather" = 1, "water_movement" = -4, "swim_mult" = 0.5) //Negate shallow water. Half the speed in deep water. - allowed_species = list(SPECIES_HANNER, SPECIES_CUSTOM) //So it only shows up for custom species and hanner + allowed_species = list(SPECIES_HANNER, SPECIES_CUSTOM, SPECIES_REPLICANT_CREW) //So it only shows up for custom species, hanner, and Gamma replicants custom_only = FALSE excludes = list(/datum/trait/positive/good_swimmer, /datum/trait/negative/bad_swimmer, /datum/trait/positive/aquatic)