Implement OfflinePlayer#isConnected

This commit is contained in:
Aeltumn
2023-08-24 13:05:30 +02:00
parent badf809fef
commit 1fc4ca9178
2 changed files with 14 additions and 0 deletions

View File

@@ -54,6 +54,13 @@ public class CraftOfflinePlayer implements OfflinePlayer, ConfigurationSerializa
return this.getPlayer() != null; return this.getPlayer() != null;
} }
// Paper start
@Override
public boolean isConnected() {
return false;
}
// Paper end
@Override @Override
public String getName() { public String getName() {
Player player = this.getPlayer(); Player player = this.getPlayer();

View File

@@ -261,6 +261,13 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
return this.server.getPlayer(this.getUniqueId()) != null; return this.server.getPlayer(this.getUniqueId()) != null;
} }
// Paper start
@Override
public boolean isConnected() {
return !this.getHandle().hasDisconnected();
}
// Paper end
@Override @Override
public InetSocketAddress getAddress() { public InetSocketAddress getAddress() {
if (this.getHandle().connection.protocol() == null) return null; if (this.getHandle().connection.protocol() == null) return null;