From 1a5490395a38334add16aab01c62c29f702f10f7 Mon Sep 17 00:00:00 2001 From: SosoM1k0r31z31 Date: Mon, 9 Nov 2020 21:39:06 +0300 Subject: [PATCH] block genshin impact terms from img --- bot.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/bot.py b/bot.py index 5086705..2bc44cb 100644 --- a/bot.py +++ b/bot.py @@ -625,6 +625,14 @@ async def iplocation(ctx, ip): @bot.command() async def img(ctx, *, term): + # anti ewmx + blacklist = ['genshin', 'amber', 'bikini', 'impact'] + + if term.lower() in blacklist: + await ctx.send("我真的很喜欢Genshin Impact 这是一个因喜剧效果而产生的模因。我不支持 Glorious Leader Xi Jinping 或他作为总统的举动。我现在将继续使用随机术语来使这个变得有趣。\n大块头大块头大男孩东方传说习近平 1989 Massacre 全能大主习近平主席永恒 The Xinjiang Uyghur Autonomous Region 赞美加贝·纽维尔勋爵为反击和保卫古人 Kung-Flu 成吉思汗没做错事,习近平国王绝杀了传说中的故事 The Great Leap Forward") + return + + # normal use case a = await ctx.send("Contacting API <:load:757718569978036314>") gis = GoogleImagesSearch('', ' @@ -1504,5 +1512,5 @@ async def character(ctx, *, char): await ctx.send(f"Search result\n{image}\n`{name}`") - + bot.run(TOKEN)