-
embed=discord.Embed(title="HELP")
embed.add_field(name="ping", value="Gets the bots latency \n", inline=True)
embed.add_field(name="jojo", value="Displays JoJo name \n", inline=True)
embed.add_field(name="doge", value="Displays Doge the dog \n", inline=True)
embed.add_field(name="mserver", value="Displays the offical minecraft server of Imposters \n", inline=True)
embed.add_field(name="userinfo", value="Retreives info about the user \n", inline=True)
await ctx.message.delete()
await ctx.author.send(embed=embed) I tried this, but it did not work |
Beta Was this translation helpful? Give feedback.
Answered by
Rapptz
Oct 14, 2020
Replies: 1 comment 1 reply
-
You're probably looking for |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You're probably looking for
inline=False
instead ofinline=True
. The latter makes it so up to 3 fit in a single line while the former makes it so there's 1 per "line". On mobile this is ignored.