2020-04-27 10:05:17 +02:00
|
|
|
#!/bin/python
|
|
|
|
|
|
|
|
from discord.ext import commands
|
|
|
|
|
|
|
|
from src.constants import *
|
|
|
|
|
2020-04-27 22:26:04 +02:00
|
|
|
# We allow "! " to catch people that put a space in their commands.
|
|
|
|
# It must be in first otherwise "!" always match first and the space is not recognised
|
2020-04-29 16:55:12 +02:00
|
|
|
bot = commands.Bot(("! ", "!"))
|
2020-04-27 10:05:17 +02:00
|
|
|
|
2020-04-29 16:55:12 +02:00
|
|
|
# Global variable to hold the tirages.
|
2020-04-29 15:14:35 +02:00
|
|
|
# We *want* it to be global so we can reload the tirages cog without
|
|
|
|
# removing all the running tirages
|
2020-04-27 11:43:16 +02:00
|
|
|
tirages = {}
|
2020-04-27 10:05:17 +02:00
|
|
|
|
|
|
|
|
|
|
|
@bot.event
|
|
|
|
async def on_ready():
|
|
|
|
print(f"{bot.user} has connected to Discord!")
|
|
|
|
|
|
|
|
|
2020-04-29 13:42:49 +02:00
|
|
|
bot.remove_command("help")
|
2020-04-28 12:41:26 +02:00
|
|
|
bot.load_extension("src.cogs.dev")
|
2020-04-29 15:14:35 +02:00
|
|
|
bot.load_extension("src.cogs.errors")
|
2020-04-28 20:25:27 +02:00
|
|
|
bot.load_extension("src.cogs.misc")
|
2020-04-29 15:14:35 +02:00
|
|
|
bot.load_extension("src.cogs.teams")
|
|
|
|
bot.load_extension("src.cogs.tirages")
|
2020-04-27 11:43:16 +02:00
|
|
|
|
|
|
|
|
2020-04-27 10:05:17 +02:00
|
|
|
if __name__ == "__main__":
|
|
|
|
bot.run(TOKEN)
|