1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-01-30 19:40:37 +01:00

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);
}