1
0
Fork 0
mirror of synced 2024-06-22 16:20:23 +12:00

Printed out the amount of messages removed when pruning

This commit is contained in:
phxntxm 2016-08-25 23:56:16 -05:00
parent 3b3974eb0b
commit 0173ff0924
2 changed files with 7 additions and 6 deletions

11
bot.py
View file

@ -1,15 +1,16 @@
#!/usr/local/bin/python3.5
from discord.ext import commands
from cogs.utils import config
import discord
import traceback
import logging
import datetime
import pendulum
import os
os.chdir(os.path.dirname(os.path.realpath(__file__)))
from discord.ext import commands
from cogs.utils import config
os.chdir(os.path.dirname(os.path.realpath(__file__)))
extensions = ['cogs.interaction',
'cogs.core',
@ -60,7 +61,7 @@ async def on_ready():
async def on_member_join(member):
notifications = config.get_content('user_notifications') or {}
server_notifications = notifications.get(member.server.id)
# By default, notifications should be off unless explicitly turned on
if not server_notifications:
return
@ -73,7 +74,7 @@ async def on_member_join(member):
async def on_member_remove(member):
notifications = config.get_content('user_notifications') or {}
server_notifications = notifications.get(member.server.id)
# By default, notifications should be off unless explicitly turned on
if not server_notifications:
return

View file

@ -247,7 +247,7 @@ class Mod:
count += 1
if count >= limit:
break
await self.bot.say("{} messages succesfully pruned")
await self.bot.say("{} messages succesfully deleted".format(count))
@commands.group(aliases=['rule'], pass_context=True, no_pm=True, invoke_without_command=True)
@checks.custom_perms(send_messages=True)