mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-08 11:24:11 +01:00
a265d64138
By: Initial <noreply+automated@papermc.io>
52 lines
1.8 KiB
Diff
52 lines
1.8 KiB
Diff
--- a/com/mojang/brigadier/tree/CommandNode.java
|
|
+++ b/com/mojang/brigadier/tree/CommandNode.java
|
|
@@ -3,6 +3,7 @@
|
|
|
|
package com.mojang.brigadier.tree;
|
|
|
|
+// CHECKSTYLE:OFF
|
|
import com.mojang.brigadier.AmbiguityConsumer;
|
|
import com.mojang.brigadier.Command;
|
|
import com.mojang.brigadier.RedirectModifier;
|
|
@@ -23,6 +24,8 @@
|
|
import java.util.concurrent.CompletableFuture;
|
|
import java.util.function.Predicate;
|
|
|
|
+import net.minecraft.commands.CommandListenerWrapper; // CraftBukkit
|
|
+
|
|
public abstract class CommandNode<S> implements Comparable<CommandNode<S>> {
|
|
private final Map<String, CommandNode<S>> children = new LinkedHashMap<>();
|
|
private final Map<String, LiteralCommandNode<S>> literals = new LinkedHashMap<>();
|
|
@@ -32,6 +35,13 @@
|
|
private final RedirectModifier<S> modifier;
|
|
private final boolean forks;
|
|
private Command<S> command;
|
|
+ // CraftBukkit start
|
|
+ public void removeCommand(String name) {
|
|
+ children.remove(name);
|
|
+ literals.remove(name);
|
|
+ arguments.remove(name);
|
|
+ }
|
|
+ // CraftBukkit end
|
|
|
|
protected CommandNode(final Command<S> command, final Predicate<S> requirement, final CommandNode<S> redirect, final RedirectModifier<S> modifier, final boolean forks) {
|
|
this.command = command;
|
|
@@ -61,7 +71,17 @@
|
|
return modifier;
|
|
}
|
|
|
|
- public boolean canUse(final S source) {
|
|
+ // CraftBukkit start
|
|
+ public synchronized boolean canUse(final S source) {
|
|
+ if (source instanceof CommandListenerWrapper) {
|
|
+ try {
|
|
+ ((CommandListenerWrapper) source).currentCommand = this;
|
|
+ return requirement.test(source);
|
|
+ } finally {
|
|
+ ((CommandListenerWrapper) source).currentCommand = null;
|
|
+ }
|
|
+ }
|
|
+ // CraftBukkit end
|
|
return requirement.test(source);
|
|
}
|
|
|