mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-29 19:52:55 +01:00
Fix improperly initialized usernames
This commit is contained in:
parent
cd593fb1ee
commit
5c861fe864
1 changed files with 3 additions and 0 deletions
|
@ -63,6 +63,9 @@ public class PendingConnection extends Connection {
|
|||
|
||||
public void a(Packet2Handshake packet2handshake) {
|
||||
// CraftBukkit start
|
||||
if (this.g != null) {
|
||||
this.disconnect("Invalid username " + this.g);
|
||||
}
|
||||
this.hostname = packet2handshake.c == null ? "" : packet2handshake.c + ':' + packet2handshake.d;
|
||||
// CraftBukkit end
|
||||
this.g = packet2handshake.f();
|
||||
|
|
Loading…
Reference in a new issue