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

SPIGOT-1599: Allow teleporting disconnected players

Dieser Commit ist enthalten in:
md_5 2016-06-30 13:01:37 +10:00
Ursprung 287ef78890
Commit 4c43856621

Datei anzeigen

@ -442,7 +442,7 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
return false;
}
if (entity.playerConnection == null || entity.playerConnection.isDisconnected()) {
if (entity.playerConnection == null) {
return false;
}