From 1accbac964168af5fa0d87cb170389f0a9d01363 Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Mon, 12 Jan 2026 02:09:41 -0600 Subject: Make Bevy dependencies optional in azalea-protocol (#303) * Make Bevy dependencies optional in azalea-protocol * derive serde traits on Direction again * update docs for types that may not have Component --- azalea-entity/src/plugin/indexing.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'azalea-entity/src/plugin/indexing.rs') diff --git a/azalea-entity/src/plugin/indexing.rs b/azalea-entity/src/plugin/indexing.rs index edceccc7..3fba6b3c 100644 --- a/azalea-entity/src/plugin/indexing.rs +++ b/azalea-entity/src/plugin/indexing.rs @@ -5,8 +5,8 @@ use std::{ fmt::{self, Debug}, }; -use azalea_core::position::ChunkPos; -use azalea_world::{Instance, InstanceContainer, InstanceName, MinecraftEntityId}; +use azalea_core::{entity_id::MinecraftEntityId, position::ChunkPos}; +use azalea_world::{Instance, InstanceContainer, InstanceName}; use bevy_ecs::prelude::*; use derive_more::{Deref, DerefMut}; use nohash_hasher::IntMap; -- cgit v1.2.3