From fba8338becba614a3724f21447b85945e024cce3 Mon Sep 17 00:00:00 2001 From: Sovenance <56086819+bananasov@users.noreply.github.com> Date: Sat, 16 Aug 2025 01:30:17 +0200 Subject: make `handle_menu_opened_event` public (#238) This change was made so people can actually add systems before or after this --- azalea/src/container.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azalea/src/container.rs b/azalea/src/container.rs index a7b496ea..b3e3bb65 100644 --- a/azalea/src/container.rs +++ b/azalea/src/container.rs @@ -267,7 +267,7 @@ impl ContainerHandle { #[derive(Component, Debug)] pub struct WaitingForInventoryOpen; -fn handle_menu_opened_event( +pub fn handle_menu_opened_event( mut commands: Commands, mut events: EventReader, ) { -- cgit v1.2.3