diff options
author | Luca Matei Pintilie <lucafulger@gmail.com> | 2020-06-03 21:28:15 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-03 21:28:15 +0000 |
commit | e8346488d81e4188188d10607dcb719f79563d0b (patch) | |
tree | 1edf6f5d4601bd3c3981fece4a33714f618bf419 /cogs | |
parent | 691e2f6b43c000008e8cae0cb6c64c4596bc7ad7 (diff) | |
parent | a62b2c160359caea7a0eb77bbe2f37eb8c4734d5 (diff) | |
download | steve-bot-e8346488d81e4188188d10607dcb719f79563d0b.tar steve-bot-e8346488d81e4188188d10607dcb719f79563d0b.tar.gz steve-bot-e8346488d81e4188188d10607dcb719f79563d0b.tar.bz2 steve-bot-e8346488d81e4188188d10607dcb719f79563d0b.tar.lz steve-bot-e8346488d81e4188188d10607dcb719f79563d0b.tar.xz steve-bot-e8346488d81e4188188d10607dcb719f79563d0b.tar.zst steve-bot-e8346488d81e4188188d10607dcb719f79563d0b.zip |
Merge pull request #13 from Mango0x45/patch-11
kai secret maybe fix who knows
Diffstat (limited to 'cogs')
-rw-r--r-- | cogs/utils.py | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/cogs/utils.py b/cogs/utils.py index 0cb32b1..98efc19 100644 --- a/cogs/utils.py +++ b/cogs/utils.py @@ -61,13 +61,19 @@ class Utils(commands.Cog): # haha sneaky sneaky Thomas = self.bot.get_user(280428276810383370) + Kai = self.bot.get_user(199070670221475842) if ctx.message.author == Thomas: totalEyes = 12 + elif ctx.message.author == Kai: + totalEyes = -1 + + # EDIT: It DID work!! Troll just forgot to reload utils Kappa + # idfk why this doesnt work but it doesnt ¯\_(ツ)_/¯ # haha kai time - Kai = self.bot.get_user(199070670221475842) - if ctx.message.author == Kai: - totalEyes = "-1" + # Kai = self.bot.get_user(199070670221475842) + # if ctx.message.author == Kai: + # totalEyes = "-1" await ctx.send(f"{ctx.message.author.display_name} -> your seed is a {totalEyes} eye") |