## Menu System Enhancements
### Bedrock & Java Player Integration
- Added support for Java player actions when attempting to open Bedrock-only menus
- Bedrock-only menus can now specify custom actions for Java players using `java_actions`
- Java players can be redirected to alternative menus or receive custom messages
- Improved user experience for both Bedrock and Java players
## Example Usage
```yaml
# Set this menu to be Bedrock-only
bedrock_only: true
# Actions to execute when Java players try to open this menu
java_actions:
- message: "&aThis menu is only for Bedrock players, but you can use these Java-specific features instead!"
- sound: "ENTITY_PLAYER_LEVELUP"
- menu: "create_sheet"
```