Fixes pronoun issues. (#9780)

This commit is contained in:
MarinaGryphon
2020-08-25 16:06:11 +02:00
committed by GitHub
parent e3d6beb3d9
commit 70c11c8f03
5 changed files with 54 additions and 12 deletions
+3 -3
View File
@@ -52,7 +52,7 @@
use_1p = get_emote_message_1p(user, target, extra_params)
use_1p = replacetext(use_1p, "TARGET_THEM", target.get_pronoun("him"))
use_1p = replacetext(use_1p, "TARGET_THEIR", target.get_pronoun("his"))
use_1p = replacetext(use_1p, "TARGET_SELF", target.get_pronoun("self"))
use_1p = replacetext(use_1p, "TARGET_SELF", target.get_pronoun("himself"))
use_1p = replacetext(use_1p, "TARGET", "<b>\the [target]</b>")
else
use_1p = get_emote_message_1p(user, null, extra_params)
@@ -63,13 +63,13 @@
use_3p = get_emote_message_3p(user, target, extra_params)
use_3p = replacetext(use_3p, "TARGET_THEM", target.get_pronoun("him"))
use_3p = replacetext(use_3p, "TARGET_THEIR", target.get_pronoun("his"))
use_3p = replacetext(use_3p, "TARGET_SELF", target.get_pronoun("self"))
use_3p = replacetext(use_3p, "TARGET_SELF", target.get_pronoun("himself"))
use_3p = replacetext(use_3p, "TARGET", "<b>\the [target]</b>")
else
use_3p = get_emote_message_3p(user, null, extra_params)
use_3p = replacetext(use_3p, "USER_THEM", user.get_pronoun("him"))
use_3p = replacetext(use_3p, "USER_THEIR", user.get_pronoun("his"))
use_3p = replacetext(use_3p, "USER_SELF", user.get_pronoun("self"))
use_3p = replacetext(use_3p, "USER_SELF", user.get_pronoun("himself"))
use_3p = replacetext(use_3p, "USER", "<b>\the [user]</b>")
use_3p = capitalize(use_3p)