diff options
| author | mat <github@matdoes.dev> | 2022-09-06 20:41:57 -0500 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-09-06 20:41:57 -0500 |
| commit | 403ae0d72bdf792de5fa34db78d3013fb752c8d4 (patch) | |
| tree | adba313ed8f3674382af99109af02d6ec6faed28 | |
| parent | 167748c7edbcac1f1ee16d034ddfddced49d144e (diff) | |
| download | azalea-drasl-403ae0d72bdf792de5fa34db78d3013fb752c8d4.tar.xz | |
remove debug println
| -rw-r--r-- | azalea-core/src/position.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/azalea-core/src/position.rs b/azalea-core/src/position.rs index 8c71676c..d47072d4 100644 --- a/azalea-core/src/position.rs +++ b/azalea-core/src/position.rs @@ -303,7 +303,6 @@ const X_OFFSET: u64 = PACKED_Y_LENGTH + PACKED_Z_LENGTH; impl McBufReadable for BlockPos { fn read_from(buf: &mut impl Read) -> Result<Self, BufReadError> { let val = i64::read_from(buf)?; - println!("reading blockpos from {}", val); let x = (val << (64 - X_OFFSET - PACKED_X_LENGTH) >> (64 - PACKED_X_LENGTH)) as i32; let y = (val << (64 - PACKED_Y_LENGTH) >> (64 - PACKED_Y_LENGTH)) as i32; let z = (val << (64 - Z_OFFSET - PACKED_Z_LENGTH) >> (64 - PACKED_Z_LENGTH)) as i32; |
