14 lines
351 B
Python
14 lines
351 B
Python
import logger
|
|
|
|
|
|
class BadCommand:
|
|
def process(self, bot, channel, sender, message):
|
|
"""
|
|
Si une commande inconnue est détectée, le bot renvoie un message abscons.
|
|
"""
|
|
if message[0] == "!":
|
|
logger.info("unknown command caught.")
|
|
|
|
bot.send(channel, f"{sender}, Yo !")
|
|
return True
|