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()?) } }