3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-19 04:50:06 +01:00

Added kick player

Dieser Commit ist enthalten in:
speakeasy 2011-01-15 09:19:54 +08:00 committet von Warren
Ursprung 0318cfc746
Commit 55959488a9

Datei anzeigen

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