diff options
Diffstat (limited to 'main.py')
-rw-r--r-- | main.py | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -3,6 +3,7 @@ import os import discord from dotenv import load_dotenv from bigresult import BotClient +import random from discord.ext import commands load_dotenv() @@ -29,4 +30,12 @@ async def orwell(ctx): async def teachbigresult(ctx): await ctx.reply("take b36 with Nick Cheng. join the 'Big Result' club") +@client.commad(name="ivotedfor") +async def voot(ctx): + if (random.randint(1, 2) == 2): + await ctx.reply("Donald trump sweeep") + else: + await ctx.reply("Kamala harris sweeep") + + client.run(TOKEN) # This actually starts our bot |