aboutsummaryrefslogtreecommitdiff
path: root/azalea-brigadier/src/tree
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2023-12-16 14:29:49 -0600
committermat <git@matdoes.dev>2023-12-16 14:29:49 -0600
commita069ffe9827dc554cbb749f5e7d88c2d36906c3d (patch)
tree9c6a7b8ecf281a5addba0c6b825f9771c0b17ca9 /azalea-brigadier/src/tree
parent92d33ad0a325b8cb7c78e13a344621e34fb4bd99 (diff)
downloadazalea-drasl-a069ffe9827dc554cbb749f5e7d88c2d36906c3d.tar.xz
fix non-u8 gamemodes
love you wynncraft
Diffstat (limited to 'azalea-brigadier/src/tree')
-rwxr-xr-xazalea-brigadier/src/tree/mod.rs2
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;
}