From 8f374d0213fe7856ba92940cd5996f7971adecdc Mon Sep 17 00:00:00 2001 From: QuoteFox <49098813+quotefox@users.noreply.github.com> Date: Thu, 31 Dec 2020 23:32:48 +0000 Subject: [PATCH] Fix fix heat Fix fix heat --- code/modules/mob/living/carbon/human/examine.dm | 5 +++-- hyperstation/code/datums/traits/neutral.dm | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index 3cac8ff3..469455c1 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -127,8 +127,9 @@ . += "[t_He] might be able to be picked up with Alt+Click!\n" //Heat Detection - if(breedable && HAS_TRAIT(user, TRAIT_HEAT)) - . += "[t_He] [t_is] currently in heat." + if(breedable) + if(HAS_TRAIT(src, TRAIT_HEAT)) + . += "[t_He] [t_is] currently in heat." //CIT CHANGES START HERE - adds genital details to examine text if(LAZYLEN(internal_organs)) diff --git a/hyperstation/code/datums/traits/neutral.dm b/hyperstation/code/datums/traits/neutral.dm index ee841f3a..f8f88a33 100644 --- a/hyperstation/code/datums/traits/neutral.dm +++ b/hyperstation/code/datums/traits/neutral.dm @@ -29,7 +29,7 @@ /datum/quirk/inheat name = "In Heat" - desc = "Your system burns with the desire to be bred, your body will betray you and alert other when examining you. This requires a womb that can be impregnated." + desc = "Your system burns with the desire to be bred, your body will betray you and alert others' to your desire when examining you. Ignoring your body may cause you to become sad and needy." value = 0 mob_trait = TRAIT_HEAT gain_text = "You body burns with the desire to be bred."