diff options
| author | mat <git@matdoes.dev> | 2024-02-22 22:41:54 -0600 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2024-02-22 22:41:54 -0600 |
| commit | 038807e607c55757b3d9a9d51f0b9e65a781772b (patch) | |
| tree | f162c7397e7ff17f2c7cb1f3fde7178dea60b645 /azalea-client/src | |
| parent | 69f7eebcb300bbefdc8b10c191a09db250bde630 (diff) | |
| download | azalea-drasl-038807e607c55757b3d9a9d51f0b9e65a781772b.tar.xz | |
fix for hypixel limbo
Diffstat (limited to 'azalea-client/src')
| -rw-r--r-- | azalea-client/src/configuration.rs | 1 | ||||
| -rw-r--r-- | azalea-client/src/local_player.rs | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/azalea-client/src/configuration.rs b/azalea-client/src/configuration.rs index 21e31b24..99b97f60 100644 --- a/azalea-client/src/configuration.rs +++ b/azalea-client/src/configuration.rs @@ -29,7 +29,6 @@ fn handle_in_configuration_state( mut send_packet_events: EventWriter<SendConfigurationPacketEvent>, ) { for (entity, client_information) in query.iter() { - // quickly send the brand here let mut brand_data = Vec::new(); // they don't have to know :) "vanilla".write_into(&mut brand_data).unwrap(); diff --git a/azalea-client/src/local_player.rs b/azalea-client/src/local_player.rs index 3b3ae89b..b0582d8b 100644 --- a/azalea-client/src/local_player.rs +++ b/azalea-client/src/local_player.rs @@ -5,7 +5,7 @@ use azalea_core::game_type::GameMode; use azalea_entity::Dead; use azalea_protocol::packets::game::clientbound_player_abilities_packet::ClientboundPlayerAbilitiesPacket; use azalea_world::{Instance, PartialInstance}; -use bevy_ecs::{component::Component, entity::Entity, prelude::*, query::Added, system::Query}; +use bevy_ecs::{component::Component, prelude::*}; use derive_more::{Deref, DerefMut}; use parking_lot::RwLock; use thiserror::Error; |
