mirror of
https://hub.spigotmc.org/stash/scm/spigot/craftbukkit.git
synced 2025-08-19 13:02:12 +00:00
13 lines
417 B
Diff
13 lines
417 B
Diff
@@ -26,6 +26,12 @@
|
|
public IChatBaseComponent getScoreboardDisplayName() {
|
|
return new ChatComponentText(this.getName());
|
|
}
|
|
+
|
|
+ // CraftBukkit start - Send a String
|
|
+ public void sendMessage(String message) {
|
|
+ this.b.append(message);
|
|
+ }
|
|
+ // CraftBukkit end
|
|
|
|
public void sendMessage(IChatBaseComponent ichatbasecomponent) {
|
|
this.b.append(ichatbasecomponent.c());
|