From 0dd335334d62c5594f02836fdd1bfc08a1025350 Mon Sep 17 00:00:00 2001 From: Jacob Date: Tue, 14 Apr 2026 00:14:17 -0400 Subject: [PATCH] feat: add appreciation to the pledges --- src/command/join.rs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/command/join.rs b/src/command/join.rs index 2facda0..eaad6e0 100644 --- a/src/command/join.rs +++ b/src/command/join.rs @@ -19,7 +19,7 @@ use twilight_model::{ use twilight_util::builder::{ InteractionResponseDataBuilder, command::CommandBuilder, - embed::{EmbedBuilder, EmbedFieldBuilder}, + embed::{EmbedBuilder, EmbedFieldBuilder, EmbedFooterBuilder}, }; const NAME: &str = "join"; @@ -205,7 +205,10 @@ pub async fn handle(state: State, interaction: Interaction) { EmbedFieldBuilder::new("You won't be \"audited\"", "I will not reference things said in past recordings with the goal of \"making a point\", nor pull them up on the spot (even by the request of the person who said it). Ideally, these are just peace of mind for me that I'm not missing out by not being in a Discord call all the time and can take my life back, so using them in an unhealthy way isn't in my interest.").build() ) .field( - EmbedFieldBuilder::new("Code is publically available", "The latest source code is at https://gitea.katniss.top/jacob/fomo-reducer (so that I don't have to write guarantees about the technology here and you can just check it yourself)").build() + EmbedFieldBuilder::new("Code is publically available", "The latest source code is at https://gitea.katniss.top/jacob/fomo-reducer so that I don't have to write guarantees about the technology here (e.g. what data is acquired, how it's used or stored) and you can just check it yourself").build() + ) + .footer( + EmbedFooterBuilder::new("Thanks for your patience and understanding as I have bad and unusual mental health and it's crazy that I need this. This - especially if I learn if I can record streams or webcams so I don't miss out on those experiences either - should be the end of abrasion and force about how we spend our time. Again, thank you, I appreciate it.") ) .validate() .unwrap()