Im coding a discord bot in python and I have a help command, is there anyway to display the description in shorter terms? maybe split up the lines? right now it is long and hard to work with. Adding anything to the description is annoying.
@client.command()
async def help(ctx):
em = discord.Embed(description='`prefix:` -\n***-***`info [ign] -` shows minecraft info\n***-***`status [ign] -` shows a players online status\n***-***`bw [ign] -` shows bedwars stats\n***-***`av [user] -` Gets users avatar\n***-***`shoot [user] -` bang bang\n***-***`hug [user] -` hugs :3\n***-***`kiss [user] -` mwah\n***-***`slap [user] - ` slap the shit out of someone\n***-***`help -` displays this message', color=0x8565c4)
em.set_author(name=f'Help')
await ctx.send(embed=em)