diff options
author | AnInternetTroll <lucafulger@gmail.com> | 2021-02-24 22:08:47 +0000 |
---|---|---|
committer | AnInternetTroll <lucafulger@gmail.com> | 2021-02-24 22:08:47 +0000 |
commit | 46227e1fa61c0864a729396665a6fbcc0a42e446 (patch) | |
tree | dea1919e536e38ac5dab15dbc12c21a3c9a4270c /cogs/utils.py | |
parent | a80f7aad3bfb03fc82d2fb594a4ec9210c2e7213 (diff) | |
download | steve-bot-46227e1fa61c0864a729396665a6fbcc0a42e446.tar steve-bot-46227e1fa61c0864a729396665a6fbcc0a42e446.tar.gz steve-bot-46227e1fa61c0864a729396665a6fbcc0a42e446.tar.bz2 steve-bot-46227e1fa61c0864a729396665a6fbcc0a42e446.tar.lz steve-bot-46227e1fa61c0864a729396665a6fbcc0a42e446.tar.xz steve-bot-46227e1fa61c0864a729396665a6fbcc0a42e446.tar.zst steve-bot-46227e1fa61c0864a729396665a6fbcc0a42e446.zip |
Make !verified asynchronous
Diffstat (limited to 'cogs/utils.py')
-rwxr-xr-x | cogs/utils.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cogs/utils.py b/cogs/utils.py index b4f819f..1ff6820 100755 --- a/cogs/utils.py +++ b/cogs/utils.py @@ -398,9 +398,7 @@ class Utils(commands.Cog): .decode("utf-8") ) if "women" in text.lower() or "woman" in text.lower(): - await message.channel.send( - "<:shut:808844274933694474>" - ) + await message.channel.send("<:shut:808844274933694474>") for word in badWords: if word in message.content.lower().replace(" ", ""): |