Skip to content

Commit

Permalink
Fix compile issues with the latest spigot version (#1510)
Browse files Browse the repository at this point in the history
  • Loading branch information
derklaro committed Feb 24, 2022
1 parent 74833f8 commit 1b4d79b
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
import org.bukkit.*;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Player;
import org.bukkit.profile.PlayerProfile;

import com.comphenix.protocol.utility.ByteBuddyFactory;

Expand Down Expand Up @@ -176,7 +177,12 @@ public long getLastPlayed() {
public UUID getUniqueId() {
return uuid;
}


@Override
public PlayerProfile getPlayerProfile() {
return null;
}

@Override
public String getName() {
return name;
Expand Down

0 comments on commit 1b4d79b

Please sign in to comment.