Java Command Dispatch Framework - (Bukkit, Spigot, Paper, Sponge, Bungee, JDA, Velocity supported, generically usable anywhere)
Environment:   Issue: Brigadier provides empty hints  For non-numeric arguments it does not display any hints  and for integer arguments provides same hint as argument  ```java This is how command manager is registered & setup private void setupCommands() { PaperCommandManager commandManager = new PaperCommandManager(this); this.commandManager = commandManager; commandManager.enableUnstableAPI("help"); commandManager.enableUnstableAPI("brigadier"); loadCommandLocales(commandManager); commandManager.registerCommand(new ItemMakerCommands()); } And this is how the command is registered @Subcommand("create") @Syntax("<id>") @Description("{@@commands.descriptions.create}") public void createItem(@Single String itemId) { getCurrentCommandIssuer().sendMessage("Cool, items id will be '"+itemId+"'"); } ``` I have run the same setup on 1.19.4 paper 522 with the same result, i've checked docs, there is nothing about brigadier, and i don't see additional annotation here 
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be resolved. The issue was opened by HowanDev and has received 1 comments.