diff options
| author | mat <git@matdoes.dev> | 2023-11-12 17:13:43 -0600 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2023-11-12 17:13:43 -0600 |
| commit | 03cc28d8e71ed969b21a0824a93dd8e2671e3178 (patch) | |
| tree | 88cd604d8fe54d4c79f6cb67ab8b6a2872529a49 /azalea/src | |
| parent | 3d22b5b91cf8ea790e98273d114f26589e8280ae (diff) | |
| download | azalea-drasl-03cc28d8e71ed969b21a0824a93dd8e2671e3178.tar.xz | |
improve docs a bit
Diffstat (limited to 'azalea/src')
| -rw-r--r-- | azalea/src/pathfinder/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea/src/pathfinder/mod.rs b/azalea/src/pathfinder/mod.rs index 5763f379..c7f05eae 100644 --- a/azalea/src/pathfinder/mod.rs +++ b/azalea/src/pathfinder/mod.rs @@ -58,9 +58,9 @@ impl Plugin for PathfinderPlugin { .add_event::<PathFoundEvent>() .add_event::<StopPathfindingEvent>() .add_systems( - FixedUpdate, // putting systems in the FixedUpdate schedule makes them run every Minecraft tick // (every 50 milliseconds). + FixedUpdate, ( timeout_movement, check_node_reached, |
