willkroboth

Results 31 issues of willkroboth

### Expected behavior Using Paper's `BasicCommand` API, I can define a permission string that is required for my command (https://github.com/PaperMC/Paper/pull/11047). When I check the permission of this command in the...

type: bug
status: needs triage
version: 1.21

Resolves https://github.com/PaperMC/Paper/issues/11378 by "restoring" the Spigot behavior where VanillaCommandNodes are only created once. This allows command frameworks that insert CommandNodes directly into the Brigadier dispatcher to change the permission String...

### Expected behavior When I execute my `/test` command as a player with no permissions, it runs successfully. ### Observed/Actual behavior When I execute my `/test` command using `Bukkit#dispatchCommand`, the...

type: bug
status: needs triage
version: 1.21.1

Aims to resolve https://github.com/JorelAli/CommandAPI/issues/356. Currently, when developers try to load the CommandAPI in a MockBukkit environment, it is very hard to get the NMS code accessed by the CommandAPI to...

See documentation at: https://github.com/CommandAPI/docs/pull/2 Wow, I created this branch 1 year and 1 day ago (must have started working on the initial commit a bit before that). This PR rewrites...

### CommandAPI version 9.5.1 ### Minecraft version 1.20.5 ### Are you shading the CommandAPI? Yes ### What I did I added this code to my `onEnable` and started the server:...

bug

Some updates to the networking logic as suggested by @Timongcraft on Discord. The `CommandAPI` Bukkit plugin now [provides](https://docs.papermc.io/paper/dev/plugin-yml/#provides) `CommandAPINetworking`. So, if a plugin depends on `CommandAPINetworking`, it will be able...

### CommandAPI version 9.6.0 ### Minecraft version 1.21.1 ### Are you shading the CommandAPI? No ### What I did Registered a command that uses a entity selector: ```java new CommandAPICommand("test")...

bug

### CommandAPI version 9.5.3 ### Minecraft version 1.20.6 ### Are you shading the CommandAPI? No ### What I did Registered a command that uses the `RecipeArgument`: ```java new CommandAPICommand("recipe") .withArguments(new...

bug

Right now, requirements are not checked when generating suggestions. This means that the following test fails: ```java // Added to `CommandSuggestionsTest` @Test public void getCompletionSuggestions_unmetRequirement() throws Exception { subject.register( literal("parent")...