Added kick player.

By: speakeasy <mekevin1917@gmail.com>
This commit is contained in:
Bukkit/Spigot 2011-01-15 09:20:29 +08:00
parent 14ed38cc63
commit b995a38d3e

View file

@ -47,4 +47,11 @@ public interface Player extends HumanEntity {
* @return the player's address
*/
public InetSocketAddress getAddress();
/**
* Kicks player with custom kick message.
*
* @return
*/
public void kickPlayer(String message);
}