From 346f74e6c47c17ea6cf71b6dc88342b748e33832 Mon Sep 17 00:00:00 2001 From: Natsu Kagami Date: Sun, 14 Jul 2024 05:33:04 +0200 Subject: [PATCH] osu: Make buttons shorter --- youmubot-osu/src/discord/interaction.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youmubot-osu/src/discord/interaction.rs b/youmubot-osu/src/discord/interaction.rs index ff10bb6..a043b14 100644 --- a/youmubot-osu/src/discord/interaction.rs +++ b/youmubot-osu/src/discord/interaction.rs @@ -41,7 +41,7 @@ pub fn beatmap_components(guild_id: Option) -> CreateActionRow { /// Creates a new check button. pub fn check_button() -> CreateButton { CreateButton::new(BTN_CHECK) - .label("Check") + .label("Me") .emoji('🔎') .style(serenity::all::ButtonStyle::Success) }