diff options
| -rwxr-xr-x | azalea-brigadier/src/command_dispatcher.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/azalea-brigadier/src/command_dispatcher.rs b/azalea-brigadier/src/command_dispatcher.rs index 3b5987fc..2f4d6ebd 100755 --- a/azalea-brigadier/src/command_dispatcher.rs +++ b/azalea-brigadier/src/command_dispatcher.rs @@ -65,6 +65,7 @@ impl<S> CommandDispatcher<S> { context_so_far: CommandContextBuilder<'a, S>, ) -> Result<ParseResults<'a, S>, CommandSyntaxException> { let source = context_so_far.source.clone(); + #[allow(clippy::mutable_key_type)] // this is fine because we don't mutate the key let mut errors = HashMap::<Rc<CommandNode<S>>, CommandSyntaxException>::new(); let mut potentials: Vec<ParseResults<S>> = vec![]; let cursor = original_reader.cursor(); |
