From 4af971a0d11c01ced064f55c29627aa3ad28ff77 Mon Sep 17 00:00:00 2001 From: Jontze <42588836+jontze@users.noreply.github.com> Date: Fri, 12 Jan 2024 12:17:15 +0100 Subject: [PATCH] feat(roll): Improve message displaying --- cadency_commands/src/roll/command.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cadency_commands/src/roll/command.rs b/cadency_commands/src/roll/command.rs index a2e6d08..2c4d3f7 100644 --- a/cadency_commands/src/roll/command.rs +++ b/cadency_commands/src/roll/command.rs @@ -31,7 +31,7 @@ impl CadencyCommand for Roll { let roll = throw.roll(); - let roll_msg = format!("**{throw_str} :ice_cube: You rolled a `{roll}`**"); + let roll_msg = format!("**`{throw_str}` :ice_cube: You rolled a `{roll}`**"); Ok(response_builder.message(Some(roll_msg)).build()?) } }