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")