13 lines
301 B
Python
13 lines
301 B
Python
import logger
|
|
|
|
|
|
class ListenAlexandrie:
|
|
def process(self, bot, channel, sender, message):
|
|
"""
|
|
Si le message est envoyé par Alexandrie, on ne réagit pas.
|
|
"""
|
|
if sender.lower() == "alexandrie":
|
|
logger.info("Alexandrie caught.")
|
|
|
|
return True
|