Added kick player

This commit is contained in:
speakeasy 2011-01-15 09:19:54 +08:00 committed by Warren
parent 0318cfc746
commit 55959488a9

View File

@ -94,4 +94,9 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
hash = 97 * hash + (this.getName() != null ? this.getName().hashCode() : 0);
return hash;
}
public void kickPlayer(String message) {
entity.a.a(message);
}
}