diff options
Diffstat (limited to 'azalea-client/src/mining.rs')
| -rw-r--r-- | azalea-client/src/mining.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/azalea-client/src/mining.rs b/azalea-client/src/mining.rs index ac4c9c0d..03063b3e 100644 --- a/azalea-client/src/mining.rs +++ b/azalea-client/src/mining.rs @@ -1,6 +1,6 @@ -use azalea_block::{fluid_state::FluidState, Block, BlockState}; +use azalea_block::{Block, BlockState, fluid_state::FluidState}; use azalea_core::{direction::Direction, game_type::GameMode, position::BlockPos, tick::GameTick}; -use azalea_entity::{mining::get_mine_progress, FluidOnEyes, Physics}; +use azalea_entity::{FluidOnEyes, Physics, mining::get_mine_progress}; use azalea_inventory::ItemStack; use azalea_physics::PhysicsSet; use azalea_protocol::packets::game::s_player_action::{self, ServerboundPlayerAction}; @@ -10,15 +10,15 @@ use bevy_ecs::prelude::*; use derive_more::{Deref, DerefMut}; use crate::{ + Client, interact::{ - can_use_game_master_blocks, check_is_interaction_restricted, CurrentSequenceNumber, - HitResultComponent, SwingArmEvent, + CurrentSequenceNumber, HitResultComponent, SwingArmEvent, can_use_game_master_blocks, + check_is_interaction_restricted, }, inventory::{Inventory, InventorySet}, local_player::{LocalGameMode, PermissionLevel, PlayerAbilities}, movement::MoveEventsSet, packet_handling::game::SendPacketEvent, - Client, }; /// A plugin that allows clients to break blocks in the world. |
