mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-08 19:34:09 +01:00
30e4583dbe
By: Initial Source <noreply+automated@papermc.io>
22 lines
1,005 B
Diff
22 lines
1,005 B
Diff
--- a/net/minecraft/world/level/BaseCommandBlock.java
|
|
+++ b/net/minecraft/world/level/BaseCommandBlock.java
|
|
@@ -33,6 +33,10 @@
|
|
private String command = "";
|
|
@Nullable
|
|
private Component customName;
|
|
+ // CraftBukkit start
|
|
+ @Override
|
|
+ public abstract org.bukkit.command.CommandSender getBukkitSender(CommandSourceStack wrapper);
|
|
+ // CraftBukkit end
|
|
|
|
public BaseCommandBlock() {}
|
|
|
|
@@ -132,7 +136,7 @@
|
|
|
|
});
|
|
|
|
- minecraftserver.getCommands().performPrefixedCommand(commandlistenerwrapper, this.command);
|
|
+ minecraftserver.getCommands().dispatchServerCommand(commandlistenerwrapper, this.command); // CraftBukkit
|
|
} catch (Throwable throwable) {
|
|
CrashReport crashreport = CrashReport.forThrowable(throwable, "Executing command block");
|
|
CrashReportCategory crashreportsystemdetails = crashreport.addCategory("Command to be executed");
|