Added description

This commit is contained in:
Stone-Red-Code
2021-02-19 09:28:52 +01:00
parent d198a7b39d
commit 7293c167e5
8 changed files with 5 additions and 1 deletions
Binary file not shown.
@@ -53,6 +53,10 @@ namespace Discord_Simple_Embed_Bot
Color = Color.Blue,
Description = $"Use `{prefix} help` to list all commands."
};
eb.AddField("About", "GuardDog is a bot that makes it very simple to post custom embeds");
eb.AddField("Contributors", "Stone_Red#2890");
eb.AddField("GitHub", "https://github.com/Stone-Red-Code/Discord_Simple-Embed-Bot");
eb.AddField("Invite", "https://discord.com/api/oauth2/authorize?client_id=808830741546008577&permissions=26624&scope=bot");
await message.Channel.SendMessageAsync("", false, eb.Build());
return;
}
+1 -1
View File
@@ -105,7 +105,7 @@ namespace Discord_Simple_Embed_Bot
efb.IsInline = true;
efb.Name = line.Remove(0, 2);
}
else if (efb is not null && !string.IsNullOrWhiteSpace(line))
else if (efb is not null)
{
efb.Value += line + "\n";
}