1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 06:16:04 +00:00

fix ambiguity

This commit is contained in:
mat 2023-03-13 21:58:11 -05:00
parent 9254f388c1
commit b8b44dcf91

View file

@ -26,14 +26,10 @@ impl Plugin for InventoryPlugin {
.add_systems(
(
handle_menu_opened_event,
handle_container_close_event.before(handle_send_packet_event),
handle_client_side_close_container_event,
)
.chain(),
)
.add_system(
handle_container_close_event
.before(handle_send_packet_event)
.before(handle_client_side_close_container_event),
);
}
}