Skip to content

Commit

Permalink
Disable user, message caches and presence updates
Browse files Browse the repository at this point in the history
  • Loading branch information
LostLuma committed Sep 19, 2019
1 parent e3c3418 commit 04a2cff
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion run.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,14 @@ async def main():
else:
break

bot = Queuebot(command_prefix='q!', config=config, db=db)
bot = Queuebot(
command_prefix='q!',
fetch_offline_members=False,
guild_subscriptions=False,
max_messages=None,
config=config,
db=db,
)

bot.discover_exts('queuebot/cogs')
bot.load_extension('jishaku')
Expand Down

0 comments on commit 04a2cff

Please sign in to comment.