我一直在用python做一个主持人机器人。 当该人的消息中有一个列入黑名单的词时,该机器人应该给该人一个无语的角色。
badwords = ["лузер", "расизм", "нацизм"] # words examples
for word in badwords:
if word in message.content.lower():
if str(message.author) != "ResadeskerBOT#7104":
mutedRole = # I do not know what to put here
await member.add_roles(mutedRole)