mirror of
https://github.com/Ryujinx/ryuko-ng.git
synced 2024-12-23 16:05:39 +00:00
verification: advanced snarkification
This commit is contained in:
parent
8d0e87ff40
commit
e0bbc17a14
|
@ -170,8 +170,14 @@ class Verification:
|
||||||
chan = message.channel
|
chan = message.channel
|
||||||
mcl = message.content.lower()
|
mcl = message.content.lower()
|
||||||
|
|
||||||
if message.content.lower() in ["bad bot", "broken bot"]:
|
if "bot" in mcl and ("bad" in mcl or
|
||||||
snark = random.choice(["bad human", "no u", "pebkac"])
|
"broken" in mcl or
|
||||||
|
"buggy" in mcl or
|
||||||
|
"bugged" in mcl or
|
||||||
|
"stupid" in mcl):
|
||||||
|
snark = random.choice(["bad human",
|
||||||
|
"no u",
|
||||||
|
"pebkac"])
|
||||||
return await chan.send(snark)
|
return await chan.send(snark)
|
||||||
|
|
||||||
# Get the role we will give in case of success
|
# Get the role we will give in case of success
|
||||||
|
|
Loading…
Reference in a new issue