mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
Finish kicking player before letting their clone in. Fixes BUKKIT-4960
This commit is contained in:
parent
bc0ac48074
commit
169fd46960
@ -167,6 +167,7 @@ public class PlayerConnection implements PacketPlayInListener {
|
||||
ChatComponentText chatcomponenttext = new ChatComponentText(s);
|
||||
|
||||
this.networkManager.handle(new PacketPlayOutKickDisconnect(chatcomponenttext), new GenericFutureListener[] { new PlayerConnectionFuture(this, chatcomponenttext)});
|
||||
this.a(chatcomponenttext); // CraftBukkit - Process quit immediately
|
||||
this.networkManager.g();
|
||||
}
|
||||
|
||||
@ -677,6 +678,7 @@ public class PlayerConnection implements PacketPlayInListener {
|
||||
}
|
||||
|
||||
public void a(IChatBaseComponent ichatbasecomponent) {
|
||||
if (this.isDisconnected()) return; // CraftBukkit - Don't trigger twice on kicks
|
||||
c.info(this.player.getName() + " lost connection: " + ichatbasecomponent.c()); // CraftBukkit - Don't toString the component
|
||||
this.minecraftServer.au();
|
||||
// CraftBukkit start - Replace vanilla quit message handling with our own.
|
||||
|
Loading…
Reference in New Issue
Block a user