From 421d8ce2c837e3140d8f866e63032c277b31a413 Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Mon, 4 Dec 2023 23:42:49 -0600 Subject: Replace Bevy's FixedUpdate with Azalea's GameTick (#119) * replace bevy FixedUpdate with azalea GameTick * Update to Bevy 0.12.1 --- azalea-client/src/attack.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'azalea-client/src/attack.rs') diff --git a/azalea-client/src/attack.rs b/azalea-client/src/attack.rs index c22de727..a28f800d 100644 --- a/azalea-client/src/attack.rs +++ b/azalea-client/src/attack.rs @@ -1,4 +1,4 @@ -use azalea_core::game_type::GameMode; +use azalea_core::{game_type::GameMode, tick::GameTick}; use azalea_entity::{ metadata::{ShiftKeyDown, Sprinting}, update_bounding_box, Attributes, Physics, @@ -8,7 +8,7 @@ use azalea_protocol::packets::game::serverbound_interact_packet::{ self, ServerboundInteractPacket, }; use azalea_world::MinecraftEntityId; -use bevy_app::{App, FixedUpdate, Plugin, Update}; +use bevy_app::{App, Plugin, Update}; use bevy_ecs::prelude::*; use derive_more::{Deref, DerefMut}; @@ -29,7 +29,7 @@ impl Plugin for AttackPlugin { .after(perform_respawn), ) .add_systems( - FixedUpdate, + GameTick, ( increment_ticks_since_last_attack, update_attack_strength_scale.after(PhysicsSet), -- cgit v1.2.3