* Removes 3.0 compatibility Improves Disk IO by writting to config every 60 seconds Also listen to `on_typing`, `on_message_edit`, `on_reaction_remove`, `on_reaction_add` * Change from `on_message` to `on_message_without_command`
8 lines
115 B
Python
8 lines
115 B
Python
from .seen import Seen
|
|
|
|
|
|
async def setup(bot):
|
|
cog = Seen(bot)
|
|
await cog.initialize()
|
|
bot.add_cog(cog)
|