From 962cb576b348e7f7b789d7db8420e8f9439b5705 Mon Sep 17 00:00:00 2001 From: mat Date: Fri, 10 Feb 2023 22:35:50 -0600 Subject: [PATCH] fix pathfinder example link --- azalea/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azalea/README.md b/azalea/README.md index a8df1b5d..a9c44461 100755 --- a/azalea/README.md +++ b/azalea/README.md @@ -77,7 +77,7 @@ Azalea lets you create "swarms", which are a group of bots in the same world tha # Plugins -Azalea uses [Bevy ECS](https://docs.rs/bevy_ecs) internally to store information about the world and clients. Bevy plugins are more powerful than async handler functions, but more difficult to use. See [pathfinder](azalea/src/pathfinder/mod.rs) as an example of how to make a plugin. You can then enable a plugin by adding `.add_plugin(ExamplePlugin)` in your client/swarm builder. +Azalea uses [Bevy ECS](https://docs.rs/bevy_ecs) internally to store information about the world and clients. Bevy plugins are more powerful than async handler functions, but more difficult to use. See [pathfinder](https://github.com/mat-1/azalea/blob/main/azalea/src/pathfinder/mod.rs) as an example of how to make a plugin. You can then enable a plugin by adding `.add_plugin(ExamplePlugin)` in your client/swarm builder. Also note that just because something is an entity in the ECS doesn't mean that it's a Minecraft entity. You can filter for that by having `With` as a filter.