diff options
| author | acdenisSK <[email protected]> | 2017-08-18 00:53:20 +0200 |
|---|---|---|
| committer | acdenisSK <[email protected]> | 2017-08-18 00:53:20 +0200 |
| commit | 106a4d5f8ff22a829a9486ce88fa8326184828fa (patch) | |
| tree | 650c539ce1fac58f07f568077a6c396b54cc9027 /src/framework/create_group.rs | |
| parent | Fix args when `use_quotes` is true (diff) | |
| download | serenity-106a4d5f8ff22a829a9486ce88fa8326184828fa.tar.xz serenity-106a4d5f8ff22a829a9486ce88fa8326184828fa.zip | |
Allow the user to be given the original message (as in, the message used to construct the `args`)
Diffstat (limited to 'src/framework/create_group.rs')
| -rw-r--r-- | src/framework/create_group.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/framework/create_group.rs b/src/framework/create_group.rs index 74d8a82..a999268 100644 --- a/src/framework/create_group.rs +++ b/src/framework/create_group.rs @@ -55,7 +55,7 @@ impl CreateGroup { /// Adds a command to group with simplified API. /// You can return Err(string) if there's an error. pub fn on<F>(mut self, command_name: &str, f: F) -> Self - where F: Fn(&mut Context, &Message, Vec<String>) -> Result<(), String> + where F: Fn(&mut Context, &Message, Vec<String>, String) -> Result<(), String> + Send + Sync + 'static { |