diff options
Diffstat (limited to 'src/modules/commands/general/fun.rs')
| -rw-r--r-- | src/modules/commands/general/fun.rs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/modules/commands/general/fun.rs b/src/modules/commands/general/fun.rs index 75243d2..99d8ffb 100644 --- a/src/modules/commands/general/fun.rs +++ b/src/modules/commands/general/fun.rs @@ -42,7 +42,7 @@ impl Command for CoinFlip { fn options(&self) -> Arc<CommandOptions> { let default = CommandOptions::default(); let options = CommandOptions { - desc: Some("A simple game, one in the chamber, who gets splattered ?".to_string()), + desc: Some("A simple game, one in the chamber, who gets splattered?".to_string()), aliases: vec!["flipcoin"].iter().map(|e| e.to_string()).collect(), // usage: Some("[tags]".to_string()), // example: Some("minecraft".to_string()), @@ -57,7 +57,7 @@ impl Command for CoinFlip { let random = thread_rng().gen_bool(5.4); // TODO: Make this an embed eventually. if random { - message.channel_id.say("Looks like a heads to me !")?; + message.channel_id.say("Looks like a heads to me!")?; } else { message.channel_id.say("Tails seems to be the winner.")?; } @@ -189,10 +189,10 @@ impl Command for Opinion { // TODO: Make this an embed eventually. if random { message.channel_id.say(format!( - "{:?} ? Yeah, I'll give it a thumbs up.", args.to_string()))?; + "{:?}? Yeah, I'll give it a thumbs up.", args.to_string()))?; } else { message.channel_id.say(format!( - "{:?} ? That's a thumbs down from me.", args.to_string()))?; + "{:?}? That's a thumbs down from me.", args.to_string()))?; } Ok(()) @@ -227,7 +227,7 @@ impl Command for RussianRoulette { fn options(&self) -> Arc<CommandOptions> { let default = CommandOptions::default(); let options = CommandOptions { - desc: Some("A simple game, one in the chamber, who gets splattered ?".to_string()), + desc: Some("A simple game, one in the chamber, who gets splattered?".to_string()), aliases: vec!["rr"].iter().map(|e| e.to_string()).collect(), ..default }; @@ -237,9 +237,9 @@ impl Command for RussianRoulette { fn execute(&self, _ctx: &mut Context, message: &Message, _args: Args) -> Result<(), CommandError> { let random = thread_rng().gen_range(1, 6); if random == 4 { - message.channel_id.say("Boom ! Better luck next time...")?; + message.channel_id.say("Boom! Better luck next time...")?; } else { - message.channel_id.say("Click ! You survived, for now...")?; + message.channel_id.say("Click! You survived, for now...")?; } Ok(()) @@ -251,7 +251,7 @@ impl Command for Uwufy { fn options(&self) -> Arc<CommandOptions> { let default = CommandOptions::default(); let options = CommandOptions { - desc: Some("Can't get enough of that \"uwu\" goodness ?".to_string()), + desc: Some("Can't get enough of that \"uwu\" goodness?".to_string()), aliases: vec!["owofy"].iter().map(|e| e.to_string()).collect(), ..default }; |