diff options
Diffstat (limited to 'azalea-brigadier/src/context')
| -rw-r--r-- | azalea-brigadier/src/context/context_chain.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-brigadier/src/context/context_chain.rs b/azalea-brigadier/src/context/context_chain.rs index afafe957..8ad5b320 100644 --- a/azalea-brigadier/src/context/context_chain.rs +++ b/azalea-brigadier/src/context/context_chain.rs @@ -89,7 +89,7 @@ impl<S> ContextChain<S> { pub fn execute_all( &self, source: Arc<S>, - result_consumer: &(dyn ResultConsumer<S>), + result_consumer: &dyn ResultConsumer<S>, ) -> Result<i32, CommandSyntaxError> { if self.modifiers.is_empty() { return self.run_executable(self.executable.clone(), source, result_consumer, false); |
