summaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'main.py')
-rw-r--r--main.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/main.py b/main.py
index 7cbc345..e0074b1 100644
--- a/main.py
+++ b/main.py
@@ -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