From 106a4d5f8ff22a829a9486ce88fa8326184828fa Mon Sep 17 00:00:00 2001 From: acdenisSK Date: Fri, 18 Aug 2017 00:53:20 +0200 Subject: Allow the user to be given the original message (as in, the message used to construct the `args`) --- src/framework/create_command.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/framework/create_command.rs') diff --git a/src/framework/create_command.rs b/src/framework/create_command.rs index cf78174..3bb019c 100644 --- a/src/framework/create_command.rs +++ b/src/framework/create_command.rs @@ -97,7 +97,7 @@ impl CreateCommand { /// /// [`exec_str`]: #method.exec_str pub fn exec(mut self, func: F) -> Self - where F: Fn(&mut Context, &Message, Vec) -> Result<(), String> + where F: Fn(&mut Context, &Message, Vec, String) -> Result<(), String> + Send + Sync + 'static { @@ -217,7 +217,7 @@ impl Default for Command { Command { aliases: Vec::new(), checks: Vec::default(), - exec: CommandType::Basic(Box::new(|_, _, _| Ok(()))), + exec: CommandType::Basic(Box::new(|_, _, _, _| Ok(()))), desc: None, usage: None, example: None, -- cgit v1.2.3