From 9ccc486b7949af80610317aaeb547af8d1253f41 Mon Sep 17 00:00:00 2001 From: Matt Fellenz Date: Tue, 20 Feb 2024 12:08:24 -0800 Subject: [PATCH] Make delete-tag a slash command There was no reason it shouldn't be. --- bot/src/bot.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/bot/src/bot.rs b/bot/src/bot.rs index 8378198..187ef12 100644 --- a/bot/src/bot.rs +++ b/bot/src/bot.rs @@ -601,6 +601,7 @@ async fn set_tag( /// Syntax: `?delete-tag ` #[poise::command( prefix_command, + slash_command, rename = "delete-tag", // It doesn't undo deletion, so it's not exactly a purely edit-tracked system, but users still expect this type of behavior. invoke_on_edit,