Fixed usage of non existing method

This commit is contained in:
Jules 2025-10-18 15:47:34 +02:00
parent ab7e60879b
commit ce255f555b

View File

@ -1532,12 +1532,12 @@ public class PlayerData extends SynchronizedDataHolder implements OfflinePlayerD
@Deprecated
public boolean isFullyLoaded() {
return isSynchronized();
return isSessionReady();
}
@Deprecated
public void setFullyLoaded() {
markAsSynchronized();
this.markSessionReady();
}
@Deprecated