From 0f1b054402434efc4ee962d2c42d436da40554e4 Mon Sep 17 00:00:00 2001 From: Natsu Kagami Date: Wed, 19 Jun 2024 21:12:29 +0200 Subject: [PATCH] Enable score hook --- youmubot/src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/youmubot/src/main.rs b/youmubot/src/main.rs index e7cff58..73fba7c 100644 --- a/youmubot/src/main.rs +++ b/youmubot/src/main.rs @@ -128,6 +128,7 @@ async fn main() { { handler.push_hook(youmubot_osu::discord::hook); handler.push_hook(youmubot_osu::discord::dot_osu_hook); + handler.push_hook(youmubot_osu::discord::score_hook); } #[cfg(feature = "codeforces")] handler.push_hook(youmubot_cf::InfoHook);