From 1c4cf58f121dfb64c93b997be5ab9dd20bb26417 Mon Sep 17 00:00:00 2001 From: InspectorCaracal <51038201+InspectorCaracal@users.noreply.github.com> Date: Tue, 11 Oct 2022 10:17:21 -0600 Subject: [PATCH] Update pronouns.py --- evennia/utils/verb_conjugation/pronouns.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/evennia/utils/verb_conjugation/pronouns.py b/evennia/utils/verb_conjugation/pronouns.py index c9058221bf..95d9d1c753 100644 --- a/evennia/utils/verb_conjugation/pronouns.py +++ b/evennia/utils/verb_conjugation/pronouns.py @@ -407,8 +407,8 @@ def pronoun_to_viewpoints( # step down into the mapping viewpoint_map = PRONOUN_MAPPING[viewpoint] - pronouns = viewpoint_map.get(pronoun_type) or viewpoint_map.get(DEFAULT_PRONOUN_TYPE) - mapped_pronoun = pronouns.get(gender) or pronouns.get(DEFAULT_GENDER) + pronouns = viewpoint_map.get(pronoun_type, viewpoint_map[DEFAULT_PRONOUN_TYPE]) + mapped_pronoun = pronouns.get(gender, pronouns[DEFAULT_GENDER]) # keep the same capitalization as the original if pronoun != "I":