diff --git a/code/__DEFINES/traits.dm b/code/__DEFINES/traits.dm index 919d177d8d8..2a234aa3f52 100644 --- a/code/__DEFINES/traits.dm +++ b/code/__DEFINES/traits.dm @@ -544,6 +544,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 826acb13433..4546f668d39 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")