diff options
| author | mat <git@matdoes.dev> | 2025-10-04 12:52:57 -0300 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-10-04 12:52:57 -0300 |
| commit | 43f20b821ce26af148156e705f4c1fd3f956beb5 (patch) | |
| tree | bfe797e92cd496f4cee59bb078d378909a3823ed /azalea-client/src/plugins/inventory.rs | |
| parent | a7e2f92b169d6079ba09b2190fefd2d539024a68 (diff) | |
| download | azalea-drasl-43f20b821ce26af148156e705f4c1fd3f956beb5.tar.xz | |
upgrade deps and rename SystemSets to follow bevy's new naming convention
Diffstat (limited to 'azalea-client/src/plugins/inventory.rs')
| -rw-r--r-- | azalea-client/src/plugins/inventory.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea-client/src/plugins/inventory.rs b/azalea-client/src/plugins/inventory.rs index 72df7c89..3c57b3cc 100644 --- a/azalea-client/src/plugins/inventory.rs +++ b/azalea-client/src/plugins/inventory.rs @@ -32,7 +32,7 @@ impl Plugin for InventoryPlugin { .add_systems( Update, handle_set_selected_hotbar_slot_event - .in_set(InventorySet) + .in_set(InventorySystems) .before(perform_respawn), ) .add_systems( @@ -48,7 +48,7 @@ impl Plugin for InventoryPlugin { } #[derive(SystemSet, Debug, Hash, PartialEq, Eq, Clone)] -pub struct InventorySet; +pub struct InventorySystems; impl Client { /// Return the menu that is currently open. If no menu is open, this will |
