diff options
author | AnInternetTroll <lucafulger@gmail.com> | 2020-06-05 17:47:19 +0000 |
---|---|---|
committer | AnInternetTroll <lucafulger@gmail.com> | 2020-06-05 17:47:19 +0000 |
commit | bfa568af62117bc7b55f13926d4c2802081002a6 (patch) | |
tree | f5a7cd98732b459bb74f65ac24fb031a2f12d308 /cogs/utils.py | |
parent | 6580e4104f003bd6f22a0e833677c43ce8d942a0 (diff) | |
download | steve-bot-bfa568af62117bc7b55f13926d4c2802081002a6.tar steve-bot-bfa568af62117bc7b55f13926d4c2802081002a6.tar.gz steve-bot-bfa568af62117bc7b55f13926d4c2802081002a6.tar.bz2 steve-bot-bfa568af62117bc7b55f13926d4c2802081002a6.tar.lz steve-bot-bfa568af62117bc7b55f13926d4c2802081002a6.tar.xz steve-bot-bfa568af62117bc7b55f13926d4c2802081002a6.tar.zst steve-bot-bfa568af62117bc7b55f13926d4c2802081002a6.zip |
Added blacklist
Diffstat (limited to '')
-rw-r--r--[-rwxr-xr-x] | cogs/utils.py | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/cogs/utils.py b/cogs/utils.py index 3e199da..e9943ee 100755..100644 --- a/cogs/utils.py +++ b/cogs/utils.py @@ -18,11 +18,11 @@ from PIL import Image from PIL import ImageFilter def set_viewport_size(driver, width, height): - window_size = driver.execute_script(""" - return [window.outerWidth - window.innerWidth + arguments[0], - window.outerHeight - window.innerHeight + arguments[1]]; - """, width, height) - driver.set_window_size(*window_size) + window_size = driver.execute_script(""" + return [window.outerWidth - window.innerWidth + arguments[0], + window.outerHeight - window.innerHeight + arguments[1]]; + """, width, height) + driver.set_window_size(*window_size) async def reportStuff(self, ctx, message): channel = self.bot.get_channel(715549209998262322) @@ -54,9 +54,9 @@ class Utils(commands.Cog): # Don't ask rigged_findseed = { - 280428276810383370: 12, # Thomas's User ID - 199070670221475842: -1, # Kai's User ID - 615658069132836865: -12 # They didn't use a real name. Sad! + 280428276810383370: 12, # Thomas's User ID + 199070670221475842: -1, # Kai's User ID + 615658069132836865: -12 # They didn't use a real name. Sad! } if ctx.author.id in rigged_findseed: @@ -252,18 +252,18 @@ class Utils(commands.Cog): @commands.command() async def someone(self, ctx): - blacklist = [536071288859656193] - if ctx.channel.id != 589110766578434078: - if ctx.author.id == 395872198323077121: - await ctx.send("grape is a bitch") - elif ctx.author.id == 521153476714299402: - await ctx.send("ZMG is smooth brain") - elif ctx.author.id == 199070670221475842: - await ctx.send("fuck you @kaii#0408") - elif ctx.author.id in blacklist: - await ctx.send("not even bothering with a message for you. You're just an edgy sheep") - else: - await ctx.send(choice(ctx.guild.members).mention) + blacklist = [536071288859656193] + if ctx.channel.id != 589110766578434078: + if ctx.author.id == 395872198323077121: + await ctx.send("grape is a bitch") + elif ctx.author.id == 521153476714299402: + await ctx.send("ZMG is smooth brain") + elif ctx.author.id == 199070670221475842: + await ctx.send(f"fuck you {ctx.message.author.mention}") + elif ctx.author.id in blacklist: + await ctx.send("not even bothering with a message for you. You're just an edgy sheep") + else: + await ctx.send(choice(ctx.guild.members).mention) @commands.command() async def roll(self, ctx, pool): |