Fix bad merge headers remaining in file
This commit is contained in:
parent
578789f152
commit
7d50992023
1 changed files with 0 additions and 10 deletions
|
@ -194,25 +194,15 @@ async def on_message(message: Message):
|
|||
if autopurge:
|
||||
await message.delete(delay=autopurge["delay"])
|
||||
content = re.sub(r"\s+", "", message.content)
|
||||
<<<<<<< HEAD
|
||||
content = re.sub(r"[^\w\d./]+", "", content)
|
||||
match = invites.search(content)
|
||||
if match:
|
||||
=======
|
||||
content = re.sub(r"[^\w\s]", "", content)
|
||||
matches = invites.match(content)
|
||||
if matches:
|
||||
>>>>>>> d2cf3549ece5640fd7e215a75e12421c8f19fa10
|
||||
guild_invites = await message.guild.invites()
|
||||
allowed = [x.code for x in guild_invites] + [
|
||||
"dbrand",
|
||||
"VtgZntXcnZ",
|
||||
]
|
||||
<<<<<<< HEAD
|
||||
if match.group(6) not in allowed:
|
||||
=======
|
||||
if matches.group(6) not in allowed:
|
||||
>>>>>>> d2cf3549ece5640fd7e215a75e12421c8f19fa10
|
||||
await message.delete()
|
||||
db.jarvis.warns.insert_one(
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue