🖕 Gwendolyn reacts when people are mean
This commit is contained in:
@ -279,7 +279,9 @@ async def on_message(message):
|
|||||||
|
|
||||||
|
|
||||||
# Is a bit sassy sometimes
|
# Is a bit sassy sometimes
|
||||||
if ("gwendolyn" in message.content.lower() or message.content.startswith("!")) and ("bitch" in message.content.lower() or "fuck" in message.content.lower()) and "ikke" in message.content.lower() and "not" in message.content.lower():
|
meanWords = ["stupid", "bitch", "fuck"]
|
||||||
|
if ("gwendolyn" in message.content.lower() or message.content.startswith("!")) and any(x in message.content.lower() for x in meanWords) and "ikke" not in message.content.lower() and "not" not in message.content.lower():
|
||||||
|
funcs.logThis(message.author.name+" was a bit mean")
|
||||||
emoji = random.choice(["😠", "🖕", "👎"])
|
emoji = random.choice(["😠", "🖕", "👎"])
|
||||||
await message.add_reaction(emoji)
|
await message.add_reaction(emoji)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user