diff options
| author | mat <github@matdoes.dev> | 2023-03-23 20:10:52 +0000 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2023-03-23 20:10:52 +0000 |
| commit | bdc42557479e6201f88151468ef1331820f62681 (patch) | |
| tree | 1ef0d352628fce6eda30bf6206f29348c08be98f | |
| parent | 95925b64fa0e75a7567c9b2361d90d477fc9bf55 (diff) | |
| download | azalea-drasl-bdc42557479e6201f88151468ef1331820f62681.tar.xz | |
>=128
| -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")] |
