diff options
author | 2021-09-05 19:46:37 +0100 | |
---|---|---|
committer | 2021-09-05 19:46:37 +0100 | |
commit | 8a410f3abd39a1b48c514d32651a50d4bdced492 (patch) | |
tree | 17fbb917adec0a1283d3d2456d8b09eee0334371 /bot/exts/fun/speedrun.py | |
parent | Merge pull request #845 from python-discord/Pin-platform-in-Dockerfile (diff) | |
parent | Merge branch 'main' into lance-restructure (diff) |
Merge pull request #851 from python-discord/lance-restructure
Restructure Sir Lancebot
Diffstat (limited to 'bot/exts/fun/speedrun.py')
-rw-r--r-- | bot/exts/fun/speedrun.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/bot/exts/fun/speedrun.py b/bot/exts/fun/speedrun.py new file mode 100644 index 00000000..c2966ce1 --- /dev/null +++ b/bot/exts/fun/speedrun.py @@ -0,0 +1,26 @@ +import json +import logging +from pathlib import Path +from random import choice + +from discord.ext import commands + +from bot.bot import Bot + +log = logging.getLogger(__name__) + +LINKS = json.loads(Path("bot/resources/fun/speedrun_links.json").read_text("utf8")) + + +class Speedrun(commands.Cog): + """Commands about the video game speedrunning community.""" + + @commands.command(name="speedrun") + async def get_speedrun(self, ctx: commands.Context) -> None: + """Sends a link to a video of a random speedrun.""" + await ctx.send(choice(LINKS)) + + +def setup(bot: Bot) -> None: + """Load the Speedrun cog.""" + bot.add_cog(Speedrun()) |