allow supplying max_messages to the discord bot

This commit is contained in:
Brian S. Stephan 2018-01-09 13:29:12 -06:00
parent 213b9ff400
commit 50a5c3d94a
2 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,7 @@
"""Discord bot Hitomi and its library functions."""
from discord.ext import commands
from django.conf import settings
BOT_DESCRIPTION = "A simple Discord bot."
hitomi = commands.Bot(command_prefix='!', description=BOT_DESCRIPTION)
hitomi = commands.Bot(command_prefix='!', description=BOT_DESCRIPTION, max_messages=settings.DISCORD_BOT_MAX_MESSAGES)

View File

@ -127,6 +127,8 @@ STATIC_URL = '/static/'
# default bot settings
DISCORD_BOT_TOKEN = 'token'
DISCORD_BOT_MAX_MESSAGES = 5000
LOGGER_BASE_DIR = './logs'
WEATHER_WEATHER_UNDERGROUND_API_KEY = 'key'