cargo clippy
This commit is contained in:
parent
54f319cb95
commit
dc1311bb15
@ -7,15 +7,18 @@ use crate::Error;
|
|||||||
/// MAKE HER BLEAT
|
/// MAKE HER BLEAT
|
||||||
#[poise::command(slash_command)]
|
#[poise::command(slash_command)]
|
||||||
pub async fn bleat(ctx: Context<'_>) -> Result<(), Error> {
|
pub async fn bleat(ctx: Context<'_>) -> Result<(), Error> {
|
||||||
|
#[allow(unused_variables)]
|
||||||
let sounds: Vec<&str> = [
|
let sounds: Vec<&str> = [
|
||||||
"rah", "grr", "bah", "bleat", "yippee", "woohoo", "huh", "wha", "buh", "whuh", "oh",
|
"rah", "grr", "bah", "bleat", "yippee", "woohoo", "huh", "wha", "buh", "whuh", "oh",
|
||||||
"yeag", "yeab", "yeas", "mweee", "mweh", "bwah",
|
"yeag", "yeab", "yeas", "mweee", "mweh", "bwah",
|
||||||
]
|
]
|
||||||
.to_vec();
|
.to_vec();
|
||||||
|
|
||||||
let faces: Vec<&str> = vec!["xp", "x3", ":3", ":3c", ";3", ";3c", "=p"].to_vec();
|
#[allow(unused_variables)]
|
||||||
|
let faces: Vec<&str> = vec!["xp", "x3", ":3", ":3c", ";3", ";3c", "=p"];
|
||||||
|
|
||||||
let exclamation: Vec<&str> = vec!["!", "1", "?", "-", ",", "."].to_vec();
|
#[allow(unused_variables)]
|
||||||
|
let exclamation: Vec<&str> = vec!["!", "1", "?", "-", ",", "."];
|
||||||
|
|
||||||
fn modify_sound(input: &str) -> String {
|
fn modify_sound(input: &str) -> String {
|
||||||
// Create an RNG
|
// Create an RNG
|
||||||
|
Loading…
Reference in New Issue
Block a user