From 5aad4e5d489703b147f2902691824391dfdf5013 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Wed, 15 Sep 2021 04:32:28 +0200 Subject: [PATCH] [MIRROR] Lavaland bottle holyness not a species trait (#8173) * Lavaland bottle holyness correctly not a species trait (#61409) This is not a species granted trait, seems it was like this out of laziness but correct me if you know better (Arm: It's just a remnant of angel's being a species in the past) * Lavaland bottle holyness not a species trait Co-authored-by: TiviPlus <57223640+TiviPlus@users.noreply.github.com> --- code/__DEFINES/traits.dm | 1 + code/modules/mining/lavaland/tendril_loot.dm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/code/__DEFINES/traits.dm b/code/__DEFINES/traits.dm index 8dd72996186..3d7f622feed 100644 --- a/code/__DEFINES/traits.dm +++ b/code/__DEFINES/traits.dm @@ -542,6 +542,7 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai #define OBESITY "obesity" #define MAGIC_TRAIT "magic" #define TRAUMA_TRAIT "trauma" +#define FLIGHTPOTION_TRAIT "flightpotion" /// Trait inherited by experimental surgeries #define EXPERIMENTAL_SURGERY_TRAIT "experimental_surgery" #define DISEASE_TRAIT "disease" diff --git a/code/modules/mining/lavaland/tendril_loot.dm b/code/modules/mining/lavaland/tendril_loot.dm index 1c8d9ebefd7..36ec22b1c5c 100644 --- a/code/modules/mining/lavaland/tendril_loot.dm +++ b/code/modules/mining/lavaland/tendril_loot.dm @@ -510,7 +510,7 @@ exposed_carbon.dna.species.GiveSpeciesFlight(exposed_carbon) if(holycheck) to_chat(exposed_carbon, span_notice("You feel blessed!")) - ADD_TRAIT(exposed_carbon, TRAIT_HOLY, SPECIES_TRAIT) + ADD_TRAIT(exposed_carbon, TRAIT_HOLY, FLIGHTPOTION_TRAIT) playsound(exposed_carbon.loc, 'sound/items/poster_ripped.ogg', 50, TRUE, -1) exposed_carbon.adjustBruteLoss(20) exposed_carbon.emote("scream")