From 83784d5a350168edaade4620122c2c6d46bc81a2 Mon Sep 17 00:00:00 2001 From: mat Date: Thu, 14 Sep 2023 16:48:21 -0500 Subject: rename Local to LocalEntity --- azalea-client/src/interact.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'azalea-client/src/interact.rs') diff --git a/azalea-client/src/interact.rs b/azalea-client/src/interact.rs index 2f7480cb..b28baca5 100644 --- a/azalea-client/src/interact.rs +++ b/azalea-client/src/interact.rs @@ -3,7 +3,7 @@ use std::ops::AddAssign; use azalea_block::BlockState; use azalea_core::{BlockHitResult, BlockPos, Direction, GameMode, Vec3}; use azalea_entity::{ - clamp_look_direction, view_vector, Attributes, EyeHeight, Local, LookDirection, Position, + clamp_look_direction, view_vector, Attributes, EyeHeight, LocalEntity, LookDirection, Position, }; use azalea_inventory::{ItemSlot, ItemSlotData}; use azalea_nbt::NbtList; @@ -318,7 +318,7 @@ pub fn handle_swing_arm_event( fn update_modifiers_for_held_item( mut query: Query< (&mut Attributes, &InventoryComponent), - (With, Changed), + (With, Changed), >, ) { for (mut attributes, inventory) in &mut query { -- cgit v1.2.3