Skip to content

Commit

Permalink
Fixes human pronouns missing an arg (#774)
Browse files Browse the repository at this point in the history
## About The Pull Request
Теперь не капиталайзит автоматом
  • Loading branch information
larentoun authored Nov 20, 2024
1 parent a59f91e commit 3433b84
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modular_bandastation/translations/code/pronouns.dm
Original file line number Diff line number Diff line change
Expand Up @@ -281,28 +281,28 @@
// MARK: Human pronouns
//////////////////////////////
// Humans need special handling, because they can have their gender hidden
/mob/living/carbon/human/ru_p_they(temp_gender)
/mob/living/carbon/human/ru_p_they(capitalized, temp_gender)
var/obscured = check_obscured_slots()
var/skipface = (wear_mask && (wear_mask.flags_inv & HIDEFACE)) || (head && (head.flags_inv & HIDEFACE))
if((obscured & ITEM_SLOT_ICLOTHING) && skipface)
temp_gender = PLURAL
return ..()

/mob/living/carbon/human/ru_p_them(temp_gender)
/mob/living/carbon/human/ru_p_them(capitalized, temp_gender)
var/obscured = check_obscured_slots()
var/skipface = (wear_mask && (wear_mask.flags_inv & HIDEFACE)) || (head && (head.flags_inv & HIDEFACE))
if((obscured & ITEM_SLOT_ICLOTHING) && skipface)
temp_gender = PLURAL
return ..()

/mob/living/carbon/human/ru_p_themselves(temp_gender)
/mob/living/carbon/human/ru_p_themselves(capitalized, temp_gender)
var/obscured = check_obscured_slots()
var/skipface = (wear_mask && (wear_mask.flags_inv & HIDEFACE)) || (head && (head.flags_inv & HIDEFACE))
if((obscured & ITEM_SLOT_ICLOTHING) && skipface)
temp_gender = PLURAL
return ..()

/mob/living/carbon/human/ru_p_theirs(temp_gender)
/mob/living/carbon/human/ru_p_theirs(capitalized, temp_gender)
var/obscured = check_obscured_slots()
var/skipface = (wear_mask && (wear_mask.flags_inv & HIDEFACE)) || (head && (head.flags_inv & HIDEFACE))
if((obscured & ITEM_SLOT_ICLOTHING) && skipface)
Expand Down

0 comments on commit 3433b84

Please sign in to comment.