diff options
| -rwxr-xr-x | azalea-nbt/src/tag.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-nbt/src/tag.rs b/azalea-nbt/src/tag.rs index 620d0577..32d73a7c 100755 --- a/azalea-nbt/src/tag.rs +++ b/azalea-nbt/src/tag.rs @@ -161,7 +161,7 @@ impl NbtCompound { #[inline] fn is_worth_sorting(&self) -> bool { - self.inner.len() > 128 + self.inner.len() >= 128 } } #[cfg(feature = "serde")] |
