diff options
| author | Fuwn <[email protected]> | 2020-10-27 13:46:50 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2020-10-27 13:46:50 -0700 |
| commit | 7df153d4dd8279d1187deb8ad7cd90813cae153b (patch) | |
| tree | 2a5258b4eff8c79b0e349eaa15154b0b6ea1d1d9 /src/modules/commands/general/fun.rs | |
| parent | chore: change workflow name and step name (diff) | |
| download | dep-core-next-7df153d4dd8279d1187deb8ad7cd90813cae153b.tar.xz dep-core-next-7df153d4dd8279d1187deb8ad7cd90813cae153b.zip | |
feat, annotate, chore (desc)
feat:
- feature request
- github organization
- change up the `uwu!` response
- add parse and send goodbye to utils
- add goodbye stuff to config model
- add aliases to ignore remove and list
- add alias to russian roulette
annotate:
- framework.rs
chore:
- change command group names
- add discriminator to ready log
- add period to fern log output
- change up order of server info command + add stuff metnioned above
other:
- comment out config goodbye
Diffstat (limited to 'src/modules/commands/general/fun.rs')
| -rw-r--r-- | src/modules/commands/general/fun.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/modules/commands/general/fun.rs b/src/modules/commands/general/fun.rs index 79f37c9..75243d2 100644 --- a/src/modules/commands/general/fun.rs +++ b/src/modules/commands/general/fun.rs @@ -228,10 +228,7 @@ impl Command for RussianRoulette { let default = CommandOptions::default(); let options = CommandOptions { desc: Some("A simple game, one in the chamber, who gets splattered ?".to_string()), - // usage: Some("[tags]".to_string()), - // example: Some("minecraft".to_string()), - // aliases: vec!["furry"].iter().map(|e| e.to_string()).collect(), - // owner_privileges: false, + aliases: vec!["rr"].iter().map(|e| e.to_string()).collect(), ..default }; Arc::new(options) |