diff options
| author | mat <git@matdoes.dev> | 2023-12-16 14:29:49 -0600 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2023-12-16 14:29:49 -0600 |
| commit | a069ffe9827dc554cbb749f5e7d88c2d36906c3d (patch) | |
| tree | 9c6a7b8ecf281a5addba0c6b825f9771c0b17ca9 /azalea-brigadier/src/tree | |
| parent | 92d33ad0a325b8cb7c78e13a344621e34fb4bd99 (diff) | |
| download | azalea-drasl-a069ffe9827dc554cbb749f5e7d88c2d36906c3d.tar.xz | |
fix non-u8 gamemodes
love you wynncraft
Diffstat (limited to 'azalea-brigadier/src/tree')
| -rwxr-xr-x | azalea-brigadier/src/tree/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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<S> PartialEq for CommandNode<S> { 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; } |
