CommandAPI icon indicating copy to clipboard operation
CommandAPI copied to clipboard

A Bukkit/Spigot API for the command UI introduced in Minecraft 1.13

Results 109 CommandAPI issues
Sort by recently updated
recently updated
newest added

**Please describe your suggestion** Currently, the annotation processor of CommandAPI can only process Java code. If you create a Kotlin project and follow all the steps, the annotation processor is...

enhancement
future idea

**CommandAPI version:** _5.12_ **Server version:** Paper version git-Paper-762 (MC: 1.16.5) (Implementing API version 1.16.5-R0.1-SNAPSHOT) **What I did:** CommandAPI running as plugin on the server. ```java class Main extends JavaPlugin {...

bug

```java new CommandAPICommand("hello") .executes(...) .register() new CommandAPICommand("hello") .withPermission(...) .executes(...) .register() ``` Because these commands have the same name, the permission from the second one doesn't carry over. The fix is...

documentation

Some arguments conflict with each other (e.g. `StringArgument` and `PlayerArgument`, and probably `SoundArgument`, `AdvancementArgument`, `LootTableArgument` etc.) This should be documented.

documentation

**Please describe your suggestion** A folder in the root of this repository with some plugin examples would be pretty good. This would be a good way to demonstrate how things...

enhancement

### Description If you have the following in your `config.yml` (note the erroneous values for `other-commands-to-convert` and `skip-sender-proxy`): ```yml # Plugins to convert (default: []) # Controls the list of...

enhancement

### Documentation URL https://commandapi.jorel.dev/8.5.1/normalexecutors.html#example---creating-a-message-broadcasting-system ### What the documentation currently says ![image](https://user-images.githubusercontent.com/4613171/191605269-c2d5e45a-b688-4b05-8f1d-3f69efd078f7.png) ### Proposed fix (Double reference to "normalcommandexecutors3" in Examples.java. Needs renaming and re-linking): ```java //Create our command CommandAPICommand("broadcastmsg") .withArguments(GreedyStringArgument("message"))...

critical bug
documentation
implemented for next release

### Description I would love it if I were able to implement CommandAPI in my Velocity proxy server, since it would make the experience on my server network so much...

enhancement

### CommandAPI version 8.5.1 ### Minecraft version 1.19.2 ### Are you shading the CommandAPI? No ### What I did - https://commandapi.jorel.dev/8.5.1/reloading.html ### What actually happened The command never unregisters when...

bug

### Description An easy way to clone a CommandAPICommand instance ### Expected code Something like: ```java new CommandAPICommand(instance); ``` Or: ```java instance.copy(); ``` ### Extra details _No response_

enhancement
implemented for next release