diff options
| author | Alee <Alee14498@gmail.com> | 2019-05-10 19:59:22 -0400 |
|---|---|---|
| committer | Alee <Alee14498@gmail.com> | 2019-05-10 19:59:22 -0400 |
| commit | e7a4eabb90aad77272235c1d9bc44b9186841bf1 (patch) | |
| tree | cdc3cfbd992bb3b058f20e5a283d84efe1ef7aed /AleeBot/Modules/Help.cs | |
| parent | abd06509d675263bbb00ee65f0fae4fa68095326 (diff) | |
| download | AleeBot.NET-e7a4eabb90aad77272235c1d9bc44b9186841bf1.tar.gz AleeBot.NET-e7a4eabb90aad77272235c1d9bc44b9186841bf1.tar.bz2 AleeBot.NET-e7a4eabb90aad77272235c1d9bc44b9186841bf1.zip | |
Added say and avatar command
Diffstat (limited to 'AleeBot/Modules/Help.cs')
| -rw-r--r-- | AleeBot/Modules/Help.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/AleeBot/Modules/Help.cs b/AleeBot/Modules/Help.cs index 612a4ce..e6d8b80 100644 --- a/AleeBot/Modules/Help.cs +++ b/AleeBot/Modules/Help.cs @@ -32,8 +32,9 @@ namespace AleeBot.Modules embed.WithTitle($"AleeBot.NET {Data.Version} Help."); embed.WithDescription($"Every command you input into AleeBot is `{Data.prefix}`"); embed.WithColor(Color.Green); - embed.AddField("Information:", "help\nping\ngit\nabout\nuptime\nchangelog"); - embed.AddField("Bot Owner Only:", "poweroff"); + embed.AddField("Information:", "help\nping\ngit\nabout\nuptime\nchangelog", true); + embed.AddField("User Information:", "avatar", true); + embed.AddField("Bot Owner Only:", "say\npoweroff", true); embed.WithFooter("AleeCorp Copyright 2012-2019"); embed.WithCurrentTimestamp(); await Context.Channel.SendMessageAsync(embed: embed.Build()); |
