mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 18:31:29 +01:00
16 lines
495 B
Diff
16 lines
495 B
Diff
--- a/net/minecraft/server/RemoteControlCommandListener.java
|
|
+++ b/net/minecraft/server/RemoteControlCommandListener.java
|
|
@@ -25,6 +25,12 @@
|
|
return new ChatComponentText(this.getName());
|
|
}
|
|
|
|
+ // CraftBukkit start - Send a String
|
|
+ public void sendMessage(String message) {
|
|
+ this.a.append(message);
|
|
+ }
|
|
+ // CraftBukkit end
|
|
+
|
|
public void sendMessage(IChatBaseComponent ichatbasecomponent) {
|
|
this.a.append(ichatbasecomponent.toPlainText());
|
|
}
|