diff options
| author | mat <git@matdoes.dev> | 2023-08-25 04:44:20 -0500 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2023-08-25 04:44:20 -0500 |
| commit | 32eece4d376263fd48c03d7a25c36c87072f8987 (patch) | |
| tree | ffaa78bf05d8fe1d83dc92e7fbb78bfaafc5d97e /azalea-entity/src/plugin/mod.rs | |
| parent | 7df2256f35fdf6925e2499966774d3a9a861e69c (diff) | |
| download | azalea-drasl-32eece4d376263fd48c03d7a25c36c87072f8987.tar.xz | |
implement stepping up stairs
Diffstat (limited to 'azalea-entity/src/plugin/mod.rs')
| -rw-r--r-- | azalea-entity/src/plugin/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea-entity/src/plugin/mod.rs b/azalea-entity/src/plugin/mod.rs index 7b514fcc..a1c7fcff 100644 --- a/azalea-entity/src/plugin/mod.rs +++ b/azalea-entity/src/plugin/mod.rs @@ -5,7 +5,7 @@ use std::collections::HashSet; use azalea_core::{BlockPos, Vec3}; use azalea_world::{InstanceContainer, InstanceName, MinecraftEntityId}; -use bevy_app::{App, Plugin, PostUpdate, PreUpdate, Update}; +use bevy_app::{App, FixedUpdate, Plugin, PostUpdate, PreUpdate, Update}; use bevy_ecs::prelude::*; use derive_more::{Deref, DerefMut}; use log::debug; @@ -63,12 +63,12 @@ impl Plugin for EntityPlugin { relative_updates::debug_detect_updates_received_on_local_entities, debug_new_entity, add_dead, - update_bounding_box, clamp_look_direction, update_fluid_on_eyes, ), ), ) + .add_systems(FixedUpdate, update_bounding_box) .init_resource::<EntityUuidIndex>(); } } |
