Skip to content

Commit

Permalink
Merge pull request #95 from honkpocket/minor-examine-nit
Browse files Browse the repository at this point in the history
Species name in examine is lowercase
  • Loading branch information
CliffracerX authored Sep 25, 2024
2 parents 5986223 + c488301 commit ee357e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/examine.dm
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
. += "[dna.features["flavor_short_desc"]] [get_extended_description_href("\[👁️\]")]"
ADD_NEWLINE_IF_NECESSARY(.)
if (dna.features["custom_species_name"])
. += "[t_He] [t_is] [prefix_a_or_an(dna.features["custom_species_name"])] <em>[get_species_description_href(dna.features["custom_species_name"])]</em> of [dna.species.name] physiology."
. += "[t_He] [t_is] [prefix_a_or_an(dna.features["custom_species_name"])] <em>[get_species_description_href(dna.features["custom_species_name"])]</em> of [LOWER_TEXT(dna.species.name)] physiology."
else
. += "[t_He] [t_is] [prefix_a_or_an(dna.species.name)] [get_species_description_href(dna.species.name)]."
// DOPPLER EDIT END
Expand Down

0 comments on commit ee357e5

Please sign in to comment.