Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Commit c3745b4

Browse files
authored
Fetch from upstream. (#10)
2 parents 31e73c9 + 8fe7442 commit c3745b4

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

minecraft/protocol/camera.go

+1
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,7 @@ func (x *CameraPreset) Marshal(r IO) {
213213
OptionalFunc(r, &x.AudioListener, r.Uint8)
214214
OptionalFunc(r, &x.PlayerEffects, r.Bool)
215215
OptionalFunc(r, &x.AlignTargetAndCameraForward, r.Bool)
216+
OptionalMarshaler(r, &x.AimAssist)
216217
}
217218

218219
// CameraPresetAimAssist represents a preset for aim assist settings.

minecraft/protocol/writer.go

+5
Original file line numberDiff line numberDiff line change
@@ -482,6 +482,11 @@ func (w *Writer) Bitset(x *Bitset, size int) {
482482
u := new(big.Int)
483483
u.Set(x.int)
484484

485+
if len(u.Bits()) == 0 {
486+
_ = w.w.WriteByte(0)
487+
return
488+
}
489+
485490
for u.Cmp(varintMaxByteValue) >= 0 {
486491
_ = w.w.WriteByte(byte(u.Bits()[0]) | 0x80)
487492
u.Rsh(u, 7)

0 commit comments

Comments
 (0)