aboutsummaryrefslogtreecommitdiff
path: root/azalea-entity/src/plugin
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2023-09-13 19:56:28 -0500
committermat <git@matdoes.dev>2023-09-13 19:56:28 -0500
commitdea4a656a574318fc011e0545046b0d78b0e816e (patch)
treee60b54f433335b32c9b4e7ab40b691e478781b74 /azalea-entity/src/plugin
parent9fa6957fa1eda2ae4b94dd381e21794b5b13f687 (diff)
downloadazalea-drasl-dea4a656a574318fc011e0545046b0d78b0e816e.tar.xz
fix tests
Diffstat (limited to 'azalea-entity/src/plugin')
-rw-r--r--azalea-entity/src/plugin/mod.rs2
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>();
}
}