diff options
| author | mat <git@matdoes.dev> | 2025-06-08 13:37:23 -1300 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-06-08 17:44:12 -0900 |
| commit | 45d73712746fbfd365e8a68a75dfad6ae2e0d174 (patch) | |
| tree | 69a1cda92aaf38337b6a791a780e809f99a64716 /azalea-world/src | |
| parent | 3087b0c996dbd3fb9a1dbcac4bf5c32f992c2e5e (diff) | |
| download | azalea-drasl-45d73712746fbfd365e8a68a75dfad6ae2e0d174.tar.xz | |
insert ClientInformation earlier
Diffstat (limited to 'azalea-world/src')
| -rw-r--r-- | azalea-world/src/bit_storage.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-world/src/bit_storage.rs b/azalea-world/src/bit_storage.rs index 7d1b72e1..01e9f349 100644 --- a/azalea-world/src/bit_storage.rs +++ b/azalea-world/src/bit_storage.rs @@ -219,7 +219,7 @@ impl BitStorage { self.size } - pub fn iter(&self) -> BitStorageIter { + pub fn iter(&self) -> BitStorageIter<'_> { BitStorageIter { storage: self, index: 0, |
