From 8353ee6e49118ecf6947f1b783f0986f72cc02e4 Mon Sep 17 00:00:00 2001 From: Byte Dice Date: Thu, 20 Mar 2025 21:04:58 +0100 Subject: [PATCH] fixed stupid bug --- src/bk_week_cmds.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bk_week_cmds.rs b/src/bk_week_cmds.rs index d2329e9..4528fcf 100644 --- a/src/bk_week_cmds.rs +++ b/src/bk_week_cmds.rs @@ -426,7 +426,7 @@ async fn get_c_id(ctx: Context<'_>) -> Option { return None; } - let d = get_mutex_data(&ctx.data().reddit_data).await.unwrap(); + let d = get_mutex_data(&ctx.data().discord_data).await.unwrap(); let c_id_u = d["servers"] [ctx.guild_id().unwrap().to_string()]