add missing abstract methods in SerializedOfflinePlayer

This commit is contained in:
Trần Nguyễn Ngọc Quang 2024-01-24 15:00:08 +07:00
parent 80aa420099
commit 153c724911
No known key found for this signature in database
GPG Key ID: C8DDBFDC5E9DC988
1 changed files with 12 additions and 0 deletions

View File

@ -135,6 +135,18 @@ class SerializedOfflinePlayer implements OfflinePlayer, Serializable {
return bedSpawnLocation;
}
@Nullable
@Override
public Location getRespawnLocation() {
return null;
}
@Nullable
@Override
public Location getLocation() {
return null;
}
// @Override
public long getLastLogin() {
return lastLogin;