v1.2.1 Changelog
- Fixed /menu <name> subcommands not working. Menu names defined in config (e.g. /menu store, /menu admin) are now registered as
subcommands automatically. Previously only /menu (opening the default menu) worked.
Version 1.2.0 - Menu Icons Are Here!
Hey everyone! This update brings a feature many of you have been waiting for - icons now display properly in your
menus!
What's New
- Working Menu Icons - Your menu items now show their icons! No more text-only buttons.
- Hytale Item Support - All configs have been updated to use proper Hytale item IDs like
Furniture_Crude_Chest_Small,Tool_Map,Ore_Gold, and more.
- Updated Example Configs - Fresh examples with all the correct icon IDs to help you get started.
Upgrading
If you're updating from a previous version, you'll want to update yourconfig.jsonto use Hytale item
IDs instead of Minecraft ones. Check out the includedexample-config.jsonfor reference!
Quick Icon Reference
- Chests:
Furniture_Crude_Chest_Small,Furniture_Ancient_Chest_Large
- Tools:
Tool_Map,Tool_Hammer_Iron,Tool_Pickaxe_Iron
- Ores:
Ore_Gold,Ore_Prisma,Ore_Mithril
- Potions:
Potion_Mana,Potion_Health
- Back Arrow:
Weapon_Arrow_Iron
Still Included
All features from v1.1.0 are still here, including theclose-commandaction that closes menus before
teleporting - no more loading screen issues!
As always, if you run into any issues or have questions, feel free to reach out. Enjoy your shiny new menu icons!
Fixed an issue where using teleport commands (like /spawn or /home) from menus would cause a "Loading..." screen to
appear.
What's New
- close-command - New action for teleport commands that closes the menu before executing
- command - Now works better with commands that open their own UI (like /vault)
Migration
If you have teleport commands in your menus, update them:
Code:command:spawn → close-command:spawn command:home → close-command:home
Commands that open their own menus (like vault, shop) should stay ascommand:vault
Bug Fixes
- Fixed all commands not executing from menu buttons
Commands triggered via menu actions were not working, despite working when typed manually in chat. This affected any menu item using the
command:action type.
Cause: The plugin was passing commands to the server without the leading slash (e.g. "sethome" instead of "/sethome"). The server
API expects the full command format including the slash prefix.
Affected actions:Any menu item usingcommand:commandnameformat, including but not limited to:
- /sethome, /home, /homes
- /spawn, /warp, /rtp, /back
- /vault, /shop, /ah, /bal
- /jobs, /kits, /daily
- All other server commands
Notes
- No config changes required - existing configs will work as expected
- Both
command:sethomeandcommand:/sethomeformats are now supported
