Make message style consistent

main
mat ess 2023-03-01 19:07:03 -05:00
parent dccd88f5e9
commit 5a76bf4bc1
1 changed files with 20 additions and 20 deletions

View File

@ -52,26 +52,26 @@ async fn eight_ball(
let answer = { let answer = {
let mut rng = rand::thread_rng(); let mut rng = rand::thread_rng();
let answers = [ let answers = [
"It is certain.", "it is certain.",
"It is decidedly so.", "it is decidedly so.",
"Without a doubt.", "without a doubt.",
"Yes definitely.", "yes definitely.",
"You may rely on it.", "you may rely on it.",
"As I see it, yes.", "as i see it, yes.",
"Most likely.", "most likely.",
"Outlook good.", "outlook good.",
"Yes.", "yes.",
"Signs point to yes.", "signs point to yes.",
"Reply hazy, try again.", "reply hazy, try again.",
"Ask again later.", "ask again later.",
"Better not tell you now.", "better not tell you now.",
"Cannot predict now.", "cannot predict now.",
"Concentrate and ask again.", "concentrate and ask again.",
"Don't count on it.", "don't count on it.",
"My reply is no.", "my reply is no.",
"My sources say no.", "my sources say no.",
"Outlook not so good.", "outlook not so good.",
"Very doubtful.", "very doubtful.",
]; ];
answers.choose(&mut rng).copied().unwrap() answers.choose(&mut rng).copied().unwrap()
}; };