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