We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74833f8 commit 1b4d79bCopy full SHA for 1b4d79b
src/main/java/com/comphenix/protocol/events/SerializedOfflinePlayer.java
@@ -45,6 +45,7 @@
45
import org.bukkit.*;
46
import org.bukkit.entity.EntityType;
47
import org.bukkit.entity.Player;
48
+import org.bukkit.profile.PlayerProfile;
49
50
import com.comphenix.protocol.utility.ByteBuddyFactory;
51
@@ -176,7 +177,12 @@ public long getLastPlayed() {
176
177
public UUID getUniqueId() {
178
return uuid;
179
}
-
180
+
181
+ @Override
182
+ public PlayerProfile getPlayerProfile() {
183
+ return null;
184
+ }
185
186
@Override
187
public String getName() {
188
return name;
0 commit comments