diff --git a/bot.py b/bot.py index cd96641..165a419 100644 --- a/bot.py +++ b/bot.py @@ -1,6 +1,7 @@ # Basic twitch bot import os +import random import sqlite3 from twitchio.ext import commands from twitchio.ext import pubsub @@ -148,6 +149,12 @@ class Bot(commands.Bot): message += f" {PREFIX}{command[0]}" await ctx.send(message) + @commands.command() + async def balls(self, ctx: commands.Context): + word_list = "cubes are just balls with corners lmao".split(" ") + random.shuffle(word_list) + await ctx.send(" ".join(word_list)) + def main(): load_dotenv()