aboutsummaryrefslogtreecommitdiff
path: root/AleeBot/Modules/Help.cs
diff options
context:
space:
mode:
Diffstat (limited to 'AleeBot/Modules/Help.cs')
-rw-r--r--AleeBot/Modules/Help.cs5
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());