aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSovenance <56086819+bananasov@users.noreply.github.com>2025-08-16 01:30:17 +0200
committerGitHub <noreply@github.com>2025-08-15 18:30:17 -0500
commitfba8338becba614a3724f21447b85945e024cce3 (patch)
treecef0b5ed00b5b9c25209703333cd8ab6a8dc9758
parent980f41be2283857eecf113aa75f187fed35f4270 (diff)
downloadazalea-drasl-fba8338becba614a3724f21447b85945e024cce3.tar.xz
make `handle_menu_opened_event` public (#238)
This change was made so people can actually add systems before or after this
-rw-r--r--azalea/src/container.rs2
1 files changed, 1 insertions, 1 deletions
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<ReceiveGamePacketEvent>,
) {