Reformatted the dice roll buttons

This commit is contained in:
2024-12-20 15:47:49 -05:00
parent 8ac0e59b8c
commit 642e2c8d66
10 changed files with 104 additions and 74 deletions

View File

@@ -72,11 +72,9 @@ fn find_voice_channel(
.and_then(|voice_state| voice_state.channel_id)
{
Some(channel) => Ok(channel),
None => {
Err(SirenError::new(
400,
"User is not in a voice channel".to_string(),
))
}
None => Err(SirenError::new(
400,
"User is not in a voice channel".to_string(),
)),
}
}