|
@ -276,9 +276,8 @@ message. |
|
|
Example: :: |
|
|
Example: :: |
|
|
|
|
|
|
|
|
@bot.command() |
|
|
@bot.command() |
|
|
async def joined_at(ctx, member: discord.Member = None): |
|
|
async def length(ctx): |
|
|
member = member or ctx.author |
|
|
await ctx.send('Your message is {} characters long.'.format(len(ctx.message.content))) |
|
|
await ctx.send('{0} joined at {0.joined_at}'.format(member)) |
|
|
|
|
|
|
|
|
|
|
|
How do I make a subcommand? |
|
|
How do I make a subcommand? |
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
|
|