Merge pull request #70 from FoxIshDaBest/patch-1

Add invite and server commands
This commit is contained in:
Jeremy "EndenDragon" Zhang 2018-01-09 17:11:12 -08:00 committed by GitHub
commit 94d1e297e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,3 +32,10 @@ class Commands():
discriminator = int(content[2][content[2].find("#") + 1:]) if "#" in content[2] else None
reason = await self.database.revoke_unauth_user_by_query(message.server.id, username, discriminator)
await self.client.send_message(message.channel, message.author.mention + " " + reason)
async def invite(self, message):
await self.client.send_message(message.channel, "You can invite Titan to your server by visiting this link: https://discordapp.com/oauth2/authorize?&client_id=299403260031139840&scope=bot&permissions=641195117")
async def server(self, message):
await self.client.send_message(message.channel, "Join the Titan Embeds Discord server! https://discord.gg/pFDDtcN")