diff --git a/azalea-brigadier/src/tree/mod.rs b/azalea-brigadier/src/tree/mod.rs index a2b1f38a..a6c93679 100755 --- a/azalea-brigadier/src/tree/mod.rs +++ b/azalea-brigadier/src/tree/mod.rs @@ -294,7 +294,7 @@ impl PartialEq for CommandNode { if let Some(selfexecutes) = &self.command { // idk how to do this better since we can't compare `dyn Fn`s if let Some(otherexecutes) = &other.command { - #[allow(clippy::vtable_address_comparisons)] + #[allow(clippy::ambiguous_wide_pointer_comparisons)] if !Arc::ptr_eq(selfexecutes, otherexecutes) { return false; }