aboutsummaryrefslogtreecommitdiff
path: root/azalea-client
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-client')
-rw-r--r--azalea-client/Cargo.toml3
-rw-r--r--azalea-client/src/plugins/mining.rs2
2 files changed, 4 insertions, 1 deletions
diff --git a/azalea-client/Cargo.toml b/azalea-client/Cargo.toml
index 74052e53..5dc05151 100644
--- a/azalea-client/Cargo.toml
+++ b/azalea-client/Cargo.toml
@@ -38,6 +38,9 @@ thiserror.workspace = true
tokio = { workspace = true, features = ["sync"] }
tracing.workspace = true
uuid.workspace = true
+# TODO: this is here to make bevy show system names in conflict warnings.
+# in bevy 0.18, we should be able to just enable the debug feature on bevy_ecs instead.
+bevy_utils = { workspace = true, features = ["debug"] }
[dev-dependencies]
anyhow.workspace = true
diff --git a/azalea-client/src/plugins/mining.rs b/azalea-client/src/plugins/mining.rs
index 4ed14482..869e7ac9 100644
--- a/azalea-client/src/plugins/mining.rs
+++ b/azalea-client/src/plugins/mining.rs
@@ -46,6 +46,7 @@ impl Plugin for MiningPlugin {
.before(PhysicsSystems)
.before(super::movement::send_position)
.before(super::interact::handle_start_use_item_queued)
+ .after(azalea_entity::update_fluid_on_eyes)
.in_set(MiningSystems),
)
.add_systems(
@@ -58,7 +59,6 @@ impl Plugin for MiningPlugin {
.in_set(MiningSystems)
.after(InventorySystems)
.after(MoveEventsSystems)
- .after(azalea_entity::update_fluid_on_eyes)
.after(crate::interact::pick::update_hit_result_component)
.after(crate::attack::handle_attack_event),
)