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

This PR fixes #494 https://github.com/PaperMC/Paper/pull/3116 added a [patch](https://github.com/PaperMC/Paper/blob/4b0bc74c90582f2d52d720c795228130545cd103/patches/server/0294-Async-command-map-building.patch) to Paper that causes the [Commands](https://wiki.vg/Protocol#Commands) packet to be built asynchronously. Specifically, they added the following [`ThreadPoolExector`](https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ThreadPoolExecutor.html) to the `net.minecraft.commands.Commands` class and...

### Description This suggestion started as a question by Adixe [in discord](https://discord.com/channels/745416925924032523/745757702608912556/1044285197140627466) Currently, whenever a command is registered, it is automatically registered under the `minecraft` namespace. So, if you register...

enhancement
implemented for next release

Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.15.2 to 1.15.4. Commits 6585820 Release version 1.15.4 of the npm package. 7a6567e Disallow bracketed hostnames. 05629af Prefer native URL instead of deprecated url.parse. 1cba8e8 Prefer native...

dependencies
javascript

### Documentation URL https://commandapi.jorel.dev/9.3.0/commandfailures.html ### What the documentation currently says ```java throw CommandAPI.failWithString(String message); throw CommandAPI.failWithMessage(Message message); throw CommandAPI.failWithBaseComponents(BaseComponent... message); throw CommandAPI.failWithAdventureComponent(Component message); ``` ### Proposed fix It should state...

documentation
implemented for next release

### Description Currently, with `StringArgument`, you can provide a list of _suggestions_ dynamically for the player to chose from using `.replaceSuggestions(...)` but it will really accept any token. There is...

enhancement

### Description I think supporting mojang-mapped servers would be a useful feature, because it's much faster to compile and/or test plugins without remapping and Paper is slowly moving to provide...

enhancement
implemented for next release

### Description There should be an option available when utilizing the `EntitySelectorArgument` to trigger an exception automatically when the resulting list is empty. This behavior mirrors the default implementation where...

enhancement
implemented for next release

### Description Sometimes I want to create `ClickEvent` to execute commands, and I don't want them show up in suggestions. It's there a way to create hidden subcommands that will...

enhancement

### CommandAPI version 9.20 ### Minecraft version 1.19 ### Are you shading the CommandAPI? Yes ### What I did CommandAPI all works correctly, this is the code for the command...

bug