From a069ffe9827dc554cbb749f5e7d88c2d36906c3d Mon Sep 17 00:00:00 2001 From: mat Date: Sat, 16 Dec 2023 14:29:49 -0600 Subject: fix non-u8 gamemodes love you wynncraft --- azalea-brigadier/src/tree/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'azalea-brigadier/src') diff --git a/azalea-brigadier/src/tree/mod.rs b/azalea-brigadier/src/tree/mod.rs index a6c93679..a982e82b 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::ambiguous_wide_pointer_comparisons)] + #[allow(ambiguous_wide_pointer_comparisons)] if !Arc::ptr_eq(selfexecutes, otherexecutes) { return false; } -- cgit v1.2.3