mirror of
https://github.com/myned/modufur.git
synced 2024-12-24 14:27:27 +00:00
Merge branch 'dev'
This commit is contained in:
commit
9627a634fb
3 changed files with 8 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
# Modumind
|
||||
Experimental Discord bot
|
||||
Discord booru bot with a side of management and tasking
|
||||
|
||||
Credits:
|
||||
Rapptz/discord.py
|
||||
|
|
|
@ -17,3 +17,9 @@ class Post:
|
|||
|
||||
def __init__(self, bot):
|
||||
self.bot = bot
|
||||
|
||||
for task in u.tasks['periodic_gpm']:
|
||||
self.bot.loop.create_task()
|
||||
|
||||
async def _check_posts(self, user, channel):
|
||||
pass
|
||||
|
|
|
@ -68,7 +68,7 @@ def dump(obj, filename, *, json=False):
|
|||
|
||||
|
||||
settings = setdefault('misc/settings.pkl', {'del_ctx': [], 'prefixes': {}})
|
||||
tasks = setdefault('cogs/tasks.pkl', {'auto_del': [], 'auto_rev': []})
|
||||
tasks = setdefault('cogs/tasks.pkl', {'auto_del': [], 'auto_rev': [], 'periodic_gpm': []})
|
||||
temp = setdefault('temp/temp.pkl', {'startup': ()})
|
||||
|
||||
RATE_LIMIT = 2.2
|
||||
|
|
Loading…
Reference in a new issue