@@ -1858,13 +1858,12 @@ index 0000000000000000000000000000000000000000..5eef7ae5197bd395fbd6800530ffe34d
1858
1858
+ }
1859
1859
diff --git a/src/main/java/io/papermc/paper/command/brigadier/bukkit/BukkitCommandNode.java b/src/main/java/io/papermc/paper/command/brigadier/bukkit/BukkitCommandNode.java
1860
1860
new file mode 100644
1861
- index 0000000000000000000000000000000000000000..0c3c82b28e581286b798ee58ca4193efc2faff4a
1861
+ index 0000000000000000000000000000000000000000..1814cd072aaca3e72249f0509a9c3b3cb154eaba
1862
1862
--- /dev/null
1863
1863
+++ b/src/main/java/io/papermc/paper/command/brigadier/bukkit/BukkitCommandNode.java
1864
- @@ -0,0 +1,148 @@
1864
+ @@ -0,0 +1,138 @@
1865
1865
+ package io.papermc.paper.command.brigadier.bukkit;
1866
1866
+
1867
- + import co.aikar.timings.Timing;
1868
1867
+ import com.mojang.brigadier.arguments.StringArgumentType;
1869
1868
+ import com.mojang.brigadier.builder.RequiredArgumentBuilder;
1870
1869
+ import com.mojang.brigadier.context.CommandContext;
@@ -1875,7 +1874,6 @@ index 0000000000000000000000000000000000000000..0c3c82b28e581286b798ee58ca4193ef
1875
1874
+ import com.mojang.brigadier.tree.LiteralCommandNode;
1876
1875
+ import io.papermc.paper.command.brigadier.CommandSourceStack;
1877
1876
+ import java.util.ArrayList;
1878
- + import java.util.Collections;
1879
1877
+ import net.minecraft.commands.CommandSource;
1880
1878
+ import org.bukkit.Bukkit;
1881
1879
+ import org.bukkit.ChatColor;
@@ -1888,7 +1886,6 @@ index 0000000000000000000000000000000000000000..0c3c82b28e581286b798ee58ca4193ef
1888
1886
+ import java.util.List;
1889
1887
+ import java.util.concurrent.CompletableFuture;
1890
1888
+ import java.util.logging.Level;
1891
- + import org.bukkit.entity.Entity;
1892
1889
+ import org.bukkit.entity.Player;
1893
1890
+ import org.bukkit.event.server.TabCompleteEvent;
1894
1891
+
@@ -1942,18 +1939,11 @@ index 0000000000000000000000000000000000000000..0c3c82b28e581286b798ee58ca4193ef
1942
1939
+ public int run(CommandContext<CommandSourceStack> context) throws CommandSyntaxException {
1943
1940
+ CommandSender sender = context.getSource().getSender();
1944
1941
+
1945
- + // Plugins do weird things to workaround normal registration
1946
- + if (this.command.timings == null) {
1947
- + this.command.timings = co.aikar.timings.TimingsManager.getCommandTiming(null, this.command);
1948
- + }
1949
- +
1950
1942
+ String content = context.getRange().get(context.getInput());
1951
1943
+ String[] args = org.apache.commons.lang3.StringUtils.split(content, ' '); // fix adjacent spaces (from console/plugins) causing empty array elements
1952
1944
+
1953
- + try (Timing ignored = this.command.timings.startTiming()) {
1954
- + // Note: we don't return the result of target.execute as thats success / failure, we return handled (true) or not handled (false)
1955
- + this.command.execute(sender, this.literal, Arrays.copyOfRange(args, 1, args.length));
1956
- + }
1945
+ + // Note: we don't return the result of target.execute as thats success / failure, we return handled (true) or not handled (false)
1946
+ + this.command.execute(sender, this.literal, Arrays.copyOfRange(args, 1, args.length));
1957
1947
+
1958
1948
+ // return true as command was handled
1959
1949
+ return 1;
0 commit comments