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 pretty much just adds more support for using formatted chat without ChatColor.RED concatenation hell. This is provided in places where brigadier accepts the `Message` type, which is tooltips...

### Description If a user registers multiple commands that have the same argument type paths, the CommandAPI should tell the user that there are commands with identical types which can...

enhancement

### CommandAPI version 8.5.0 ### Minecraft version 1.19 ### Are you shading the CommandAPI? No ### What I did - Register the following commands: ```java new CommandAPICommand("sug") .withArguments(new StringArgument("my_str_arg") .includeSuggestions(ArgumentSuggestions.strings("hello",...

bug

### CommandAPI version 8.5.0 ### Minecraft version 1.16 ### Are you shading the CommandAPI? No ### What I did - I created a command using a CustomArgument and a StringArgument...

bug
currently hotfixed

### Description It is currently possible to import Brigadier and create a GreedyStringArgument that lets users input a Minecraft command as an argument like so: From https://commandapi.jorel.dev/8.4.0/brigadiersuggestions.html ```java ArgumentSuggestions commandSuggestions...

enhancement

**Please describe your suggestion** Optional arguments **Please supply examples of the desired inputs and outputs** _Normal usage:_ User enters this: ```java new CommandAPICommand("blah") .withArgument(new IntegerArgument("int")) .withOptionalArgument(new IntegerArgument("optional"), 10) .executes((sender, args)...

enhancement

**CommandAPI version** 5.11 **Minecraft version** 1.16.5 **Describe the bug** Given a class that actually is inner class: ```java @Command("weather") @Permission("assentials.command.weather") public class WeatherCommand { @Command("sun") @Permission("assentials.command.weather") public static class SunShortcut...

bug
for annotations

**Please describe your suggestion** Annotation suggestions **Please supply examples of the desired inputs and outputs** See [`misc/annotation-suggestions/`](https://github.com/JorelAli/CommandAPI/tree/v5.3/misc/annotation-suggestions) folder.

enhancement
for annotations

**Please describe your suggestion** Being able to have commands like `/command subcommand subsubcommand argument` within the annotation-way of building commands. **Please supply examples of the desired inputs and outputs** _Example:_...

enhancement
for annotations

**Please describe your suggestion** The new annotation system should support multiple command executors for a single command, similarly to how the CommandAPI does already **Please supply examples of the desired...

enhancement
for annotations