From 62d1bc25365af0c3a5814655f34956c718bb1ff4 Mon Sep 17 00:00:00 2001 From: TiviPlus <57223640+TiviPlus@users.noreply.github.com> Date: Wed, 15 Sep 2021 03:33:13 +0200 Subject: [PATCH] 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) --- 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 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")