Fix kick message

This commit is contained in:
Jeremy Zhang 2017-05-26 19:03:29 -07:00
parent afda68d138
commit 64079b449d

View File

@ -19,7 +19,7 @@ class Commands():
serverid = message.server.id serverid = message.server.id
content = message.content.strip() content = message.content.strip()
if len(content.split()) == 2: if len(content.split()) == 2:
await self.client.send_message(message.channel, message.author.mention + " Please provide a username-query (or optionally a discriminator) to ban a guest user.\nExample: `ban Titan#0001`") await self.client.send_message(message.channel, message.author.mention + " Please provide a username-query (or optionally a discriminator) to kick a guest user.\nExample: `kick Titan#0001`")
return return
content = content.split() content = content.split()
username = content[2][:content[2].find("#")] if "#" in content[2] else content[2] username = content[2][:content[2].find("#")] if "#" in content[2] else content[2]