Change in grammar

This commit is contained in:
Howard Abrams 2026-02-27 22:45:06 -08:00
parent 4c12c7d3ad
commit bef4d35f36
2 changed files with 2 additions and 1 deletions

View file

@ -493,6 +493,7 @@ class Character(Object, GenderCharacter, ContribRPCharacter):
"""
# All this does is add the character's gender to the message.
# So $pron(you,op) will render "you" or "him"
# and $pron(you,sp) will render "you" or "he"
newmsg = sub(r"\$pron\(([^\)]*?),([^\)]*?)\)",
f"$pron(\\1,\\2 {self.db.gender})",
message)

View file

@ -522,7 +522,7 @@ class WeeBeastie(Friendly, Familiar, Listener):
and_then = random.choice([
"gives $pron(you,op) a cute lick as if to say, Thank you",
"purrs in appreciation for the treat",
"rubs its wee widdle head under $pron(you,op) chin in gratitude",
"rubs its wee widdle head under $pron(your,op) chin in gratitude",
])
edible = is_edible(item)