Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Parsing ClientboundSetEntityDataPacket #169

Open
mikeshadow1452 opened this issue Aug 26, 2024 · 1 comment
Open

Parsing ClientboundSetEntityDataPacket #169

mikeshadow1452 opened this issue Aug 26, 2024 · 1 comment

Comments

@mikeshadow1452
Copy link

I'm trying to get the Vec from ClientboundSetEntityDataPacket.packed_items that the server sends me when I update an item and rotate that item in the frame (data in this packet). I am trying to use TryFrom for this:

async fn handle(bot: Client, event: Event, _state: State) -> anyhow::Result<()> {
    match event {
        Event::Packet(packet) => match *packet {
            ClientboundGamePacket::SetEntityData( ref p)=>{
                match Vec::<EntityDataValue>::try_from(p.clone().packed_items) {
                    Ok(value) => {println!("{:#?}", value)}
                    Err(e) => {println!("{}", e)}
                }
            }
            _ => {}
        }
        _ => {}
    }
    Ok(())
}

But I get the error Index 8 is too big.
I have studied the TryFrom code and came to the conclusion that this check is not needed here or is written incorrectly:

if item.index as usize > len {
    return Err(format!("Index {} is too big", item.index));
}

In the protocol it says

Updates one or more metadata properties for an existing entity. Any properties not included in the Metadata field are left unchanged

From this we can conclude that not all fields are always sent and their number does not necessarily equal the maximum index in the packet.
Can you fix this or explain how to properly parse such packets?

The packet I received
ClientboundSetEntityDataPacket {
    id: 6,
    packed_items: EntityMetadataItems(
        [
            EntityDataItem {
                index: 8,
                value: ItemStack(
                    Present(
                        ItemSlotData {
                            count: 1,
                            kind: FilledMap,
                            components: {
                                MapId,
                                CustomData,
                            },
                        },
                    ),
                ),
            },
            EntityDataItem {
                index: 9,
                value: Int(
                    2,
                ),
            },
        ],
    ),
}
@ShayBox
Copy link
Contributor

ShayBox commented Oct 22, 2024

Also having common ClientbountSetEntityDataPacket errors

2024-10-22T02:07:18.757935Z ERROR azalea_client::packet_handling::game: failed to read packet: Parse { packet_id: 88, packet_name: "ClientboundSetEntityDataPacket", backtrace: Backtrace [{ fn: "<azalea_protocol::packets::game::ClientboundGamePacket as azalea_protocol::packets::ProtocolPacket>::read::{{closure}}", file: "/home/shaybox/.cargo/git/checkouts/azalea-72d3b0ed0d639eed/ed7b306/azalea-protocol/src/packets/game/mod.rs", line: 183 }, { fn: "core::result::Result<T,E>::map_err", file: "/home/shaybox/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/result.rs", line: 855 }, { fn: "<azalea_protocol::packets::game::ClientboundGamePacket as azalea_protocol::packets::ProtocolPacket>::read", file: "/home/shaybox/.cargo/git/checkouts/azalea-72d3b0ed0d639eed/ed7b306/azalea-protocol/src/packets/game/mod.rs", line: 183 }, { fn: "azalea_protocol::read::deserialize_packet", file: "/home/shaybox/.cargo/git/checkouts/azalea-72d3b0ed0d639eed/ed7b306/azalea-protocol/src/read.rs", line: 136 }, { fn: "azalea_client::packet_handling::game::send_packet_events", file: "/home/shaybox/.cargo/git/checkouts/azalea-72d3b0ed0d639eed/ed7b306/azalea-client/src/packet_handling/game.rs", line: 161 }, { fn: "core::ops::function::FnMut::call_mut", file: "/home/shaybox/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/ops/function.rs", line: 166 }, { fn: "core::ops::function::impls::<impl core::ops::function::FnMut<A> for &mut F>::call_mut", file: "/home/shaybox/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/ops/function.rs", line: 294 }, { fn: "<Func as bevy_ecs::system::function_system::SystemParamFunction<fn(F0,F1) .> Out>>::run::call_inner", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bevy_ecs-0.13.2/src/system/function_system.rs", line: 656 }, { fn: "<Func as bevy_ecs::system::function_system::SystemParamFunction<fn(F0,F1) .> Out>>::run", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bevy_ecs-0.13.2/src/system/function_system.rs", line: 659 }, { fn: "<bevy_ecs::system::function_system::FunctionSystem<Marker,F> as bevy_ecs::system::system::System>::run_unsafe", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bevy_ecs-0.13.2/src/system/function_system.rs", line: 499 }, { fn: "bevy_ecs::system::system::System::run", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bevy_ecs-0.13.2/src/system/system.rs", line: 76 }, { fn: "<bevy_ecs::schedule::executor::single_threaded::SingleThreadedExecutor as bevy_ecs::schedule::executor::SystemExecutor>::run::{{closure}}", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bevy_ecs-0.13.2/src/schedule/executor/single_threaded.rs", line: 101 }, { fn: "core::ops::function::FnOnce::call_once", file: "/home/shaybox/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/ops/function.rs", line: 250 }, { fn: "<core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once", file: "/home/shaybox/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/panic/unwind_safe.rs", line: 272 }, { fn: "std::panicking::try::do_call", file: "/home/shaybox/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/panicking.rs", line: 557 }, { fn: "std::panicking::try", file: "/home/shaybox/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/panicking.rs", line: 520 }, { fn: "std::panic::catch_unwind", file: "/home/shaybox/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/panic.rs", line: 358 }, { fn: "<bevy_ecs::schedule::executor::single_threaded::SingleThreadedExecutor as bevy_ecs::schedule::executor::SystemExecutor>::run", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bevy_ecs-0.13.2/src/schedule/executor/single_threaded.rs", line: 100 }, { fn: "bevy_ecs::schedule::schedule::Schedule::run", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bevy_ecs-0.13.2/src/schedule/schedule.rs", line: 345 }, { fn: "bevy_ecs::world::World::run_schedule::{{closure}}", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bevy_ecs-0.13.2/src/world/mod.rs", line: 2306 }, { fn: "bevy_ecs::world::World::try_schedule_scope", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bevy_ecs-0.13.2/src/world/mod.rs", line: 2225 }, { fn: "bevy_ecs::world::World::try_run_schedule", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bevy_ecs-0.13.2/src/world/mod.rs", line: 2292 }, { fn: "bevy_app::main_schedule::Main::run_main::{{closure}}", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bevy_app-0.13.2/src/main_schedule.rs", line: 233 }, { fn: "bevy_ecs::world::World::resource_scope", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bevy_ecs-0.13.2/src/world/mod.rs", line: 1672 }, { fn: "bevy_app::main_schedule::Main::run_main", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bevy_app-0.13.2/src/main_schedule.rs", line: 231 }, { fn: "core::ops::function::FnMut::call_mut", file: "/home/shaybox/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/ops/function.rs", line: 166 }, { fn: "core::ops::function::impls::<impl core::ops::function::FnMut<A> for &mut F>::call_mut", file: "/home/shaybox/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/ops/function.rs", line: 294 }, { fn: "<Func as bevy_ecs::system::exclusive_function_system::ExclusiveSystemParamFunction<fn(F0) .> Out>>::run::call_inner", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bevy_ecs-0.13.2/src/system/exclusive_function_system.rs", line: 206 }, { fn: "<Func as bevy_ecs::system::exclusive_function_system::ExclusiveSystemParamFunction<fn(F0) .> Out>>::run", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bevy_ecs-0.13.2/src/system/exclusive_function_system.rs", line: 209 }, { fn: "<bevy_ecs::system::exclusive_function_system::ExclusiveFunctionSystem<Marker,F> as bevy_ecs::system::system::System>::run::{{closure}}", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bevy_ecs-0.13.2/src/system/exclusive_function_system.rs", line: 111 }, { fn: "bevy_ecs::world::World::last_change_tick_scope", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bevy_ecs-0.13.2/src/world/mod.rs", line: 1981 }, { fn: "<bevy_ecs::system::exclusive_function_system::ExclusiveFunctionSystem<Marker,F> as bevy_ecs::system::system::System>::run", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bevy_ecs-0.13.2/src/system/exclusive_function_system.rs", line: 103 }, { fn: "<bevy_ecs::schedule::executor::single_threaded::SingleThreadedExecutor as bevy_ecs::schedule::executor::SystemExecutor>::run::{{closure}}", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bevy_ecs-0.13.2/src/schedule/executor/single_threaded.rs", line: 101 }, { fn: "core::ops::function::FnOnce::call_once", file: "/home/shaybox/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/ops/function.rs", line: 250 }, { fn: "<core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once", file: "/home/shaybox/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/panic/unwind_safe.rs", line: 272 }, { fn: "std::panicking::try::do_call", file: "/home/shaybox/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/panicking.rs", line: 557 }, { fn: "std::panicking::try", file: "/home/shaybox/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/panicking.rs", line: 520 }, { fn: "std::panic::catch_unwind", file: "/home/shaybox/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/panic.rs", line: 358 }, { fn: "<bevy_ecs::schedule::executor::single_threaded::SingleThreadedExecutor as bevy_ecs::schedule::executor::SystemExecutor>::run", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bevy_ecs-0.13.2/src/schedule/executor/single_threaded.rs", line: 100 }, { fn: "bevy_ecs::schedule::schedule::Schedule::run", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bevy_ecs-0.13.2/src/schedule/schedule.rs", line: 345 }, { fn: "bevy_ecs::world::World::run_schedule::{{closure}}", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bevy_ecs-0.13.2/src/world/mod.rs", line: 2306 }, { fn: "bevy_ecs::world::World::try_schedule_scope", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bevy_ecs-0.13.2/src/world/mod.rs", line: 2225 }, { fn: "bevy_ecs::world::World::schedule_scope", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bevy_ecs-0.13.2/src/world/mod.rs", line: 2277 }, { fn: "bevy_ecs::world::World::run_schedule", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bevy_ecs-0.13.2/src/world/mod.rs", line: 2306 }, { fn: "azalea_client::client::run_schedule_loop::{{closure}}", file: "/home/shaybox/.cargo/git/checkouts/azalea-72d3b0ed0d639eed/ed7b306/azalea-client/src/client.rs", line: 782 }, { fn: "tokio::runtime::task::core::Core<T,S>::poll::{{closure}}", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.40.0/src/runtime/task/core.rs", line: 331 }, { fn: "tokio::loom::std::unsafe_cell::UnsafeCell<T>::with_mut", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.40.0/src/loom/std/unsafe_cell.rs", line: 16 }, { fn: "tokio::runtime::task::core::Core<T,S>::poll", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.40.0/src/runtime/task/core.rs", line: 320 }, { fn: "tokio::runtime::task::harness::poll_future::{{closure}}", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.40.0/src/runtime/task/harness.rs", line: 500 }, { fn: "<core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once", file: "/home/shaybox/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/panic/unwind_safe.rs", line: 272 }, { fn: "std::panicking::try::do_call", file: "/home/shaybox/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/panicking.rs", line: 557 }, { fn: "std::panicking::try", file: "/home/shaybox/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/panicking.rs", line: 520 }, { fn: "std::panic::catch_unwind", file: "/home/shaybox/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/panic.rs", line: 358 }, { fn: "tokio::runtime::task::harness::poll_future", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.40.0/src/runtime/task/harness.rs", line: 488 }, { fn: "tokio::runtime::task::harness::Harness<T,S>::poll_inner", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.40.0/src/runtime/task/harness.rs", line: 209 }, { fn: "tokio::runtime::task::harness::Harness<T,S>::poll", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.40.0/src/runtime/task/harness.rs", line: 154 }, { fn: "tokio::runtime::task::LocalNotified<S>::run", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.40.0/src/runtime/task/mod.rs", line: 436 }, { fn: "tokio::runtime::scheduler::current_thread::CoreGuard::block_on::{{closure}}::{{closure}}", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.40.0/src/runtime/scheduler/current_thread/mod.rs", line: 737 }, { fn: "tokio::runtime::coop::with_budget", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.40.0/src/runtime/coop.rs", line: 107 }, { fn: "tokio::runtime::coop::budget", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.40.0/src/runtime/coop.rs", line: 73 }, { fn: "tokio::runtime::scheduler::current_thread::Context::run_task::{{closure}}", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.40.0/src/runtime/scheduler/current_thread/mod.rs", line: 359 }, { fn: "tokio::runtime::scheduler::current_thread::Context::enter", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.40.0/src/runtime/scheduler/current_thread/mod.rs", line: 423 }, { fn: "tokio::runtime::scheduler::current_thread::Context::run_task", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.40.0/src/runtime/scheduler/current_thread/mod.rs", line: 359 }, { fn: "tokio::runtime::scheduler::current_thread::CoreGuard::block_on::{{closure}}", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.40.0/src/runtime/scheduler/current_thread/mod.rs", line: 736 }, { fn: "tokio::runtime::scheduler::current_thread::CoreGuard::enter::{{closure}}", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.40.0/src/runtime/scheduler/current_thread/mod.rs", line: 774 }, { fn: "tokio::runtime::context::scoped::Scoped<T>::set", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.40.0/src/runtime/context/scoped.rs", line: 40 }, { fn: "tokio::runtime::context::set_scheduler::{{closure}}", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.40.0/src/runtime/context.rs", line: 180 }, { fn: "std::thread::local::LocalKey<T>::try_with", file: "/home/shaybox/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/thread/local.rs", line: 283 }, { fn: "std::thread::local::LocalKey<T>::with", file: "/home/shaybox/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/thread/local.rs", line: 260 }, { fn: "tokio::runtime::context::set_scheduler", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.40.0/src/runtime/context.rs", line: 180 }, { fn: "tokio::runtime::scheduler::current_thread::CoreGuard::enter", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.40.0/src/runtime/scheduler/current_thread/mod.rs", line: 774 }, { fn: "tokio::runtime::scheduler::current_thread::CoreGuard::block_on", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.40.0/src/runtime/scheduler/current_thread/mod.rs", line: 683 }, { fn: "tokio::runtime::scheduler::current_thread::CurrentThread::block_on::{{closure}}", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.40.0/src/runtime/scheduler/current_thread/mod.rs", line: 191 }, { fn: "tokio::runtime::context::runtime::enter_runtime", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.40.0/src/runtime/context/runtime.rs", line: 65 }, { fn: "tokio::runtime::scheduler::current_thread::CurrentThread::block_on", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.40.0/src/runtime/scheduler/current_thread/mod.rs", line: 179 }, { fn: "tokio::runtime::runtime::Runtime::block_on_inner", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.40.0/src/runtime/runtime.rs", line: 361 }, { fn: "tokio::runtime::runtime::Runtime::block_on", file: "/home/shaybox/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tokio-1.40.0/src/runtime/runtime.rs", line: 333 }, { fn: "shaysbot::main", file: "./src/main.rs", line: 10 }, { fn: "core::ops::function::FnOnce::call_once", file: "/home/shaybox/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/ops/function.rs", line: 250 }, { fn: "std::sys::backtrace::__rust_begin_short_backtrace", file: "/home/shaybox/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/sys/backtrace.rs", line: 154 }, { fn: "std::rt::lang_start::{{closure}}", file: "/home/shaybox/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/rt.rs", line: 195 }, { fn: "core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once", file: "/rustc/662180b34d95f72d05b7c467b0baf4d23d36b1e1/library/core/src/ops/function.rs", line: 284 }, { fn: "std::panicking::try::do_call", file: "/rustc/662180b34d95f72d05b7c467b0baf4d23d36b1e1/library/std/src/panicking.rs", line: 557 }, { fn: "std::panicking::try", file: "/rustc/662180b34d95f72d05b7c467b0baf4d23d36b1e1/library/std/src/panicking.rs", line: 520 }, { fn: "std::panic::catch_unwind", file: "/rustc/662180b34d95f72d05b7c467b0baf4d23d36b1e1/library/std/src/panic.rs", line: 358 }, { fn: "std::rt::lang_start_internal::{{closure}}", file: "/rustc/662180b34d95f72d05b7c467b0baf4d23d36b1e1/library/std/src/rt.rs", line: 174 }, { fn: "std::panicking::try::do_call", file: "/rustc/662180b34d95f72d05b7c467b0baf4d23d36b1e1/library/std/src/panicking.rs", line: 557 }, { fn: "std::panicking::try", file: "/rustc/662180b34d95f72d05b7c467b0baf4d23d36b1e1/library/std/src/panicking.rs", line: 520 }, { fn: "std::panic::catch_unwind", file: "/rustc/662180b34d95f72d05b7c467b0baf4d23d36b1e1/library/std/src/panic.rs", line: 358 }, { fn: "std::rt::lang_start_internal", file: "/rustc/662180b34d95f72d05b7c467b0baf4d23d36b1e1/library/std/src/rt.rs", line: 174 }, { fn: "main" }, { fn: "__libc_start_main" }, { fn: "_start" }], source: Io { source: Error { kind: UnexpectedEof, message: "failed to fill whole buffer" } } }
2024-10-22T02:07:23.858763Z ERROR azalea_client::packet_handling::game: failed to read packet: LeftoverData { data: [255, 153, 0, 20, 255, 205, 92, 171, 255], packet_name: "ClientboundSetEntityDataPacket" }
2024-10-22T02:07:48.758818Z ERROR azalea_client::packet_handling::game: failed to read packet: LeftoverData { data: [255, 153, 0, 20, 255, 205, 92, 171, 255], packet_name: "ClientboundSetEntityDataPacket" }
2024-10-22T02:08:18.759083Z ERROR azalea_client::packet_handling::game: failed to read packet: LeftoverData { data: [255, 153, 0, 20, 255, 205, 92, 171, 255], packet_name: "ClientboundSetEntityDataPacket" }
2024-10-22T02:08:48.759238Z ERROR azalea_client::packet_handling::game: failed to read packet: LeftoverData { data: [255, 153, 0, 20, 255, 205, 92, 171, 255], packet_name: "ClientboundSetEntityDataPacket" }
2024-10-22T02:09:18.759140Z ERROR azalea_client::packet_handling::game: failed to read packet: LeftoverData { data: [255, 153, 0, 20, 255, 205, 92, 171, 255], packet_name: "ClientboundSetEntityDataPacket" }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants