Added Player.sendRawMessage().

This commit is contained in:
sk89q 2011-03-12 01:05:09 -08:00
parent a0530f5112
commit 653df54406

View File

@ -49,6 +49,13 @@ public interface Player extends HumanEntity, CommandSender {
* @return the player's address * @return the player's address
*/ */
public InetSocketAddress getAddress(); public InetSocketAddress getAddress();
/**
* Sends this sender a message raw
*
* @param message Message to be displayed
*/
public void sendRawMessage(String message);
/** /**
* Kicks player with custom kick message. * Kicks player with custom kick message.