aboutsummaryrefslogtreecommitdiff
path: root/src/commands/meta.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/meta.rs')
-rw-r--r--src/commands/meta.rs13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/commands/meta.rs b/src/commands/meta.rs
index 917fbfe..681d5a5 100644
--- a/src/commands/meta.rs
+++ b/src/commands/meta.rs
@@ -18,10 +18,17 @@ pub async fn about(ctx: Context<'_>) -> Result<(), Error> {
.send(|m| {
m.embed(|e| {
e.title("Glitch");
+ e.description("A pony who just wants to help out!");
- e
- });
- m
+ e.field("Creator", "<@118455061222260736>", true);
+ e.field("Avatar", "<@678816040146436117>", true);
+ e.field("Action GIFs", "<@678816040146436117>", true);
+ e.field("Support the author!", "https://ko-fi.com/muirrum", false);
+
+ e.footer(|f| {
+ f.text(format!("Running version: {}", current_version))
+ })
+ })
})
.await
{