diff options
author | Mango0x45 <thomasvoss@live.com> | 2021-02-13 19:31:19 +0000 |
---|---|---|
committer | Mango0x45 <thomasvoss@live.com> | 2021-02-13 19:31:19 +0000 |
commit | 3f732efbcd7b2fb9bc6e595aee6347195bb1b143 (patch) | |
tree | bb095245e807b2bd7de3e007a4c7989445d74e7d /cogs | |
parent | 23957cfb876f649519eacb3776020f3c3dc26466 (diff) | |
download | steve-bot-3f732efbcd7b2fb9bc6e595aee6347195bb1b143.tar steve-bot-3f732efbcd7b2fb9bc6e595aee6347195bb1b143.tar.gz steve-bot-3f732efbcd7b2fb9bc6e595aee6347195bb1b143.tar.bz2 steve-bot-3f732efbcd7b2fb9bc6e595aee6347195bb1b143.tar.lz steve-bot-3f732efbcd7b2fb9bc6e595aee6347195bb1b143.tar.xz steve-bot-3f732efbcd7b2fb9bc6e595aee6347195bb1b143.tar.zst steve-bot-3f732efbcd7b2fb9bc6e595aee6347195bb1b143.zip |
Whitelist coop all bosses when rejecting spam
Diffstat (limited to 'cogs')
-rwxr-xr-x | cogs/src.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cogs/src.py b/cogs/src.py index 82ad323..8419efb 100755 --- a/cogs/src.py +++ b/cogs/src.py @@ -204,7 +204,7 @@ async def pendingRuns(self, ctx): # Reject run if it's a clear fake (less than 30 second full game run, but not Kill Elder Guardian) elif ( run._type == "Full Game Run" - and run.category != "Kill Bosses Glitchless" + and "Kill Bosses Glitchless" not in run.category and run.duration.seconds <= 60 ): runs_to_reject.append( |