Skip to content

Commit

Permalink
fix schedule conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
mat-1 committed Apr 20, 2024
1 parent 78e9813 commit d9cbe3f
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions azalea/src/pathfinder/extras/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pub mod utils;

use crate::ecs::prelude::*;
use azalea_block::BlockStates;
use azalea_client::Client;
use azalea_client::{mining::MiningSet, Client};
use azalea_core::{position::BlockPos, tick::GameTick};
use azalea_physics::PhysicsSet;
use bevy_app::Update;
Expand All @@ -29,8 +29,12 @@ impl Plugin for PathfinderExtrasPlugin {
.before(crate::pathfinder::handle_stop_pathfinding_event),
pickup::add_pickup_components_to_player,
pickup::remove_pickup_components_from_player,
pickup::watch_for_mined_blocks,
pickup::watch_for_item_spawns_from_blocks_we_mined,
(
pickup::watch_for_mined_blocks,
pickup::watch_for_item_spawns_from_blocks_we_mined,
)
.chain()
.after(MiningSet),
),
)
.add_systems(
Expand Down

0 comments on commit d9cbe3f

Please sign in to comment.