mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-03 13:42:25 -07:00
Update to Minecraft 1.13-pre7
This commit is contained in:
@@ -1,15 +1,20 @@
|
||||
--- a/net/minecraft/server/RemoteControlCommandListener.java
|
||||
+++ b/net/minecraft/server/RemoteControlCommandListener.java
|
||||
@@ -21,6 +21,12 @@
|
||||
return "Rcon";
|
||||
@@ -23,6 +23,17 @@
|
||||
return new CommandListenerWrapper(this, new Vec3D(worldserver.getSpawn()), Vec2F.a, worldserver, 4, "Recon", new ChatComponentText("Rcon"), this.b, (Entity) null);
|
||||
}
|
||||
|
||||
+ // CraftBukkit start - Send a String
|
||||
+ public void sendMessage(String message) {
|
||||
+ this.a.append(message);
|
||||
+ }
|
||||
+
|
||||
+ @Override
|
||||
+ public org.bukkit.command.CommandSender getBukkitSender(CommandListenerWrapper wrapper) {
|
||||
+ return b.remoteConsole;
|
||||
+ }
|
||||
+ // CraftBukkit end
|
||||
+
|
||||
public void sendMessage(IChatBaseComponent ichatbasecomponent) {
|
||||
this.a.append(ichatbasecomponent.toPlainText());
|
||||
this.a.append(ichatbasecomponent.getString());
|
||||
}
|
||||
|
Reference in New Issue
Block a user