From 1f0285425cdb06546804493a1cdcfb0edb16252d Mon Sep 17 00:00:00 2001 From: minneelyyyy Date: Wed, 11 Dec 2024 16:40:55 -0500 Subject: [PATCH] fix: not using format when I intended to format --- src/commands/gambling/wager.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/gambling/wager.rs b/src/commands/gambling/wager.rs index 69d1082..eb77889 100644 --- a/src/commands/gambling/wager.rs +++ b/src/commands/gambling/wager.rs @@ -64,7 +64,7 @@ pub async fn wager( Some(item) } None => { - ctx.reply("item {item} does not exist.").await?; + ctx.reply(format!("item {item} does not exist.")).await?; return Ok(()); } }