We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bef83dc + 8a4eed1 commit f29c10dCopy full SHA for f29c10d
sopel/modules/pronouns.py
@@ -120,3 +120,10 @@ def set_pronouns(bot, trigger):
120
bot.reply(
121
"Thanks for telling me! I'll remember you use {}.{}".format(pronouns, disambig)
122
)
123
+
124
125
+@plugin.command('clearpronouns')
126
+def unset_pronouns(bot, trigger):
127
+ """Clear pronouns for the given user."""
128
+ bot.db.delete_nick_value(trigger.nick, 'pronouns')
129
+ bot.reply("Okay, I'll forget your pronouns.")
0 commit comments