aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/src/plugins/tick_counter.rs
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-10-04 12:52:57 -0300
committermat <git@matdoes.dev>2025-10-04 12:52:57 -0300
commit43f20b821ce26af148156e705f4c1fd3f956beb5 (patch)
treebfe797e92cd496f4cee59bb078d378909a3823ed /azalea-client/src/plugins/tick_counter.rs
parenta7e2f92b169d6079ba09b2190fefd2d539024a68 (diff)
downloadazalea-drasl-43f20b821ce26af148156e705f4c1fd3f956beb5.tar.xz
upgrade deps and rename SystemSets to follow bevy's new naming convention
Diffstat (limited to 'azalea-client/src/plugins/tick_counter.rs')
-rw-r--r--azalea-client/src/plugins/tick_counter.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/azalea-client/src/plugins/tick_counter.rs b/azalea-client/src/plugins/tick_counter.rs
index dd65ca69..9d07991a 100644
--- a/azalea-client/src/plugins/tick_counter.rs
+++ b/azalea-client/src/plugins/tick_counter.rs
@@ -1,10 +1,10 @@
use azalea_core::tick::GameTick;
-use azalea_physics::PhysicsSet;
+use azalea_physics::PhysicsSystems;
use azalea_world::InstanceName;
use bevy_app::{App, Plugin};
use bevy_ecs::prelude::*;
-use crate::{mining::MiningSet, movement::send_position, tick_broadcast::send_tick_broadcast};
+use crate::{mining::MiningSystems, movement::send_position, tick_broadcast::send_tick_broadcast};
/// Counts the number of game ticks elapsed on the **local client** since the
/// `login` packet was received.
@@ -20,8 +20,8 @@ impl Plugin for TickCounterPlugin {
app.add_systems(
GameTick,
increment_counter
- .before(PhysicsSet)
- .before(MiningSet)
+ .before(PhysicsSystems)
+ .before(MiningSystems)
.before(send_position)
.before(send_tick_broadcast),
);