fix: not using format when I intended to format

This commit is contained in:
2024-12-11 16:40:55 -05:00
parent 40ca349e31
commit 1f0285425c

View File

@@ -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(());
}
}