diff options
| author | mat <27899617+mat-1@users.noreply.github.com> | 2022-10-23 19:00:24 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-23 19:00:24 -0500 |
| commit | 65da123631b0a2dc078786f60fa6b213e8b430ee (patch) | |
| tree | 8854f29c4240d36bec1710ebc2293a488c495d3d /azalea-world/src | |
| parent | 587001724acf8a7c6de30927da31c1f5fd7fdb09 (diff) | |
| download | azalea-drasl-65da123631b0a2dc078786f60fa6b213e8b430ee.tar.xz | |
Add Client::set_client_information (#33)
* start adding options
* add default options
* send options packet by default
* mention set_options in Client::join doc
* make TranslatableComponent::read return TextComponent
* change set_options to set_client_information
* clean up some code
* Add `Initialize` event
* fix some clippy warnings
* change `Client::options` to `client_information`
Diffstat (limited to 'azalea-world/src')
| -rw-r--r-- | azalea-world/src/chunk_storage.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/azalea-world/src/chunk_storage.rs b/azalea-world/src/chunk_storage.rs index daabb214..0c60376a 100644 --- a/azalea-world/src/chunk_storage.rs +++ b/azalea-world/src/chunk_storage.rs @@ -106,7 +106,8 @@ impl ChunkStorage { if !self.in_range(pos) { log::trace!( "Ignoring chunk since it's not in the view range: {}, {}", - pos.x, pos.z + pos.x, + pos.z ); return Ok(()); } |
