diff options
| author | Sovenance <56086819+bananasov@users.noreply.github.com> | 2025-08-16 01:30:17 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-15 18:30:17 -0500 |
| commit | fba8338becba614a3724f21447b85945e024cce3 (patch) | |
| tree | cef0b5ed00b5b9c25209703333cd8ab6a8dc9758 | |
| parent | 980f41be2283857eecf113aa75f187fed35f4270 (diff) | |
| download | azalea-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.rs | 2 |
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>, ) { |
