aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <57815710+Mango0x45@users.noreply.github.com>2020-05-28 17:23:02 +0000
committerGitHub <noreply@github.com>2020-05-28 17:23:02 +0000
commit1300513d908052a8a55cf827fecd85c37a334255 (patch)
tree92ac219de451a7348af70336b3ce5a117022372a
parent59932dbef71f4d036f8962d53bd0d80cba333ff7 (diff)
downloadsteve-bot-1300513d908052a8a55cf827fecd85c37a334255.tar
steve-bot-1300513d908052a8a55cf827fecd85c37a334255.tar.gz
steve-bot-1300513d908052a8a55cf827fecd85c37a334255.tar.bz2
steve-bot-1300513d908052a8a55cf827fecd85c37a334255.tar.lz
steve-bot-1300513d908052a8a55cf827fecd85c37a334255.tar.xz
steve-bot-1300513d908052a8a55cf827fecd85c37a334255.tar.zst
steve-bot-1300513d908052a8a55cf827fecd85c37a334255.zip
secret
-rwxr-xr-xcogs/utils.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/cogs/utils.py b/cogs/utils.py
index cbb1653..9d9df83 100755
--- a/cogs/utils.py
+++ b/cogs/utils.py
@@ -4,8 +4,10 @@ import discord
import requests
import json
import asyncio
+import datetime
from datetime import timedelta
+
async def reportStuff(self, ctx, message):
channel = self.bot.get_channel(715549209998262322)
@@ -57,6 +59,18 @@ class Utils(commands.Cog):
return
badWords = ["fair", "f a i r", "ⓕⓐⓘⓡ", "ⓕ ⓐ ⓘ ⓡ"]
count = 0
+
+ thomas = self.bot.get_user(280428276810383370)
+ scott = self.bot.get_user(223937483774230528)
+ # idk if she goes by her irl name but I'm sticking with it for the sake of uniformity
+ # also prakxo sounds weird
+ samantha = self.bot.get_user(226312219787264000)
+ if datetime.date.today() == datetime.date(2020, 6, 23):
+ await scott.send('Happy Birthday Scott. You\'re a boomer now! :mango:')
+ elif datetime.date.today() == datetime.date(2020, 6, 25):
+ await samantha.send('Happy Birthday Prakxo. You\'re a boomer now! :mango:')
+ elif datetime.date.today() == datetime.date(2020, 5, 28):
+ await thomas.send('Testy Test :mango:')
for word in badWords:
if word in message.content.lower():
count += 1;