diff options
| author | mat <git@matdoes.dev> | 2023-09-13 19:56:28 -0500 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2023-09-13 19:56:28 -0500 |
| commit | dea4a656a574318fc011e0545046b0d78b0e816e (patch) | |
| tree | e60b54f433335b32c9b4e7ab40b691e478781b74 /azalea-entity | |
| parent | 9fa6957fa1eda2ae4b94dd381e21794b5b13f687 (diff) | |
| download | azalea-drasl-dea4a656a574318fc011e0545046b0d78b0e816e.tar.xz | |
fix tests
Diffstat (limited to 'azalea-entity')
| -rw-r--r-- | azalea-entity/src/plugin/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-entity/src/plugin/mod.rs b/azalea-entity/src/plugin/mod.rs index 6153ac17..10e2a2f3 100644 --- a/azalea-entity/src/plugin/mod.rs +++ b/azalea-entity/src/plugin/mod.rs @@ -68,7 +68,7 @@ impl Plugin for EntityPlugin { ), ) .add_systems(Update, update_bounding_box) - .add_systems(FixedUpdate, update_in_loaded_chunk) + .add_systems(PreUpdate, update_in_loaded_chunk) .init_resource::<EntityUuidIndex>(); } } |
