Implemented Webhooks to make sending messages look more real, as an option

This commit is contained in:
Jeremy Zhang
2017-07-01 06:52:21 +00:00
parent 3c82b3b6b0
commit 087606bd40
8 changed files with 106 additions and 11 deletions

View File

@ -212,3 +212,7 @@ class Titan(discord.Client):
await self.database.update_guild(before[0].server)
else:
await self.database.update_guild(after[0].server)
async def on_webhooks_update(self, server):
await self.wait_until_dbonline()
await self.database.update_guild(server)