From 43f20b821ce26af148156e705f4c1fd3f956beb5 Mon Sep 17 00:00:00 2001 From: mat Date: Sat, 4 Oct 2025 12:52:57 -0300 Subject: upgrade deps and rename SystemSets to follow bevy's new naming convention --- azalea-client/src/plugins/inventory.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'azalea-client/src/plugins/inventory.rs') 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 -- cgit v1.2.3