diff options
author | AnInternetTroll <lucafulger@gmail.com> | 2020-06-03 21:30:11 +0000 |
---|---|---|
committer | AnInternetTroll <lucafulger@gmail.com> | 2020-06-03 21:30:11 +0000 |
commit | eccb7b1b36f905804af3f55191779f24f751b19b (patch) | |
tree | 5971545972a2257541a89dbd85b2d627e110a9ce /cogs | |
parent | 733e710d23d3ec6bcabbe4aeb0d82f2d6f38c5f0 (diff) | |
parent | e8346488d81e4188188d10607dcb719f79563d0b (diff) | |
download | steve-bot-eccb7b1b36f905804af3f55191779f24f751b19b.tar steve-bot-eccb7b1b36f905804af3f55191779f24f751b19b.tar.gz steve-bot-eccb7b1b36f905804af3f55191779f24f751b19b.tar.bz2 steve-bot-eccb7b1b36f905804af3f55191779f24f751b19b.tar.lz steve-bot-eccb7b1b36f905804af3f55191779f24f751b19b.tar.xz steve-bot-eccb7b1b36f905804af3f55191779f24f751b19b.tar.zst steve-bot-eccb7b1b36f905804af3f55191779f24f751b19b.zip |
Merge branch 'master' of https://github.com/AnInternetTroll/mcbeDiscordBot
Diffstat (limited to 'cogs')
-rwxr-xr-x | cogs/utils.py | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/cogs/utils.py b/cogs/utils.py index 0cb32b1..98efc19 100755 --- 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") |