Skip to content

Commit

Permalink
[MIRROR] Self-examining shows more appropriate age text
Browse files Browse the repository at this point in the history
  • Loading branch information
SierraKomodo authored and LordNest committed Jan 7, 2025
1 parent 920d845 commit 32df274
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions code/modules/species/species_age_comparison.dm
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,11 @@
if (!age_diff_descriptor)
age_diff_descriptor = age_diff_descriptors[length(age_diff_descriptors)]

if (observer == observed)
return "You are of [age_descriptor] age for \a [name]."

var/datum/pronouns/pronouns = observed.choose_from_pronouns()
if (age_diff_descriptor)
return "[pronouns.He] [pronouns.is] of [age_descriptor] age for a [name], [age_diff_descriptor] you."
return "[pronouns.He] [pronouns.is] of [age_descriptor] age for \a [name], [age_diff_descriptor] you."
else if (age_descriptor)
return "[pronouns.He] [pronouns.is] of [age_descriptor] age for a [name]."
return "[pronouns.He] [pronouns.is] of [age_descriptor] age for \a [name]."

0 comments on commit 32df274

Please sign in to comment.