aboutsummaryrefslogtreecommitdiff
path: root/bot.py
diff options
context:
space:
mode:
authorAnInternetTroll <lucafulger@gmail.com>2020-05-06 11:36:50 +0000
committerAnInternetTroll <lucafulger@gmail.com>2020-05-06 11:36:50 +0000
commit7f15747e7689b9bc58105cc909f0d8b95081fbd9 (patch)
treef9ed35eb826722ffca8cf525b2c51123672ff162 /bot.py
parent14fd81118a30dea394eca940cefb6dda86b66933 (diff)
downloadsteve-bot-7f15747e7689b9bc58105cc909f0d8b95081fbd9.tar
steve-bot-7f15747e7689b9bc58105cc909f0d8b95081fbd9.tar.gz
steve-bot-7f15747e7689b9bc58105cc909f0d8b95081fbd9.tar.bz2
steve-bot-7f15747e7689b9bc58105cc909f0d8b95081fbd9.tar.lz
steve-bot-7f15747e7689b9bc58105cc909f0d8b95081fbd9.tar.xz
steve-bot-7f15747e7689b9bc58105cc909f0d8b95081fbd9.tar.zst
steve-bot-7f15747e7689b9bc58105cc909f0d8b95081fbd9.zip
hiding my tracks :eyes:
Diffstat (limited to 'bot.py')
-rwxr-xr-xbot.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/bot.py b/bot.py
index b4cc0b4..cace1d1 100755
--- a/bot.py
+++ b/bot.py
@@ -11,7 +11,7 @@ extensions = [
"cogs.admin"
]
-class CelesteBot(commands.Bot):
+class BedrockBot(commands.Bot):
def __init__(self):
super().__init__(command_prefix='/')
@@ -46,9 +46,11 @@ class CelesteBot(commands.Bot):
badWords = ["fair", "f a i r", "ⓕⓐⓘⓡ", "ⓕ ⓐ ⓘ ⓡ"]
if message.channel.id == 589110766578434078:
+ count = 0
for word in badWords:
if word in message.content.lower():
- await message.channel.send('Fair')
+ count += 1;
+ await message.channel.send('Fair '*count)
await self.process_commands(message)