While trying to compile a spigot plugin using maven, I run into an issue and am really tired of it

Viewed 32

The Error: net.atlas.SkyblockSandbox.player.SBPlayer is not abstract and does not override abstract method getTexture() in org.bukkit.entity.Player

Some code I think is causing the issue

(If more is needed to help fix the issue please let me know!)

import com.xxmicloxx.NoteBlockAPI.*;
import lombok.Getter;
import lombok.Setter;
import net.atlas.SkyblockSandbox.*;
import org.bson.Document;
import org.bukkit.*;
import java.io.File;
import java.util.*;
import java.util.concurrent.atomic.AtomicBoolean;
import static net.atlas.SkyblockSandbox.SBX.*;
import static net.atlas.SkyblockSandbox.*;

@Setter
public class SBPlayer extends PluginPlayer {

    static SBPlayer sbPlayer;
    public static HashMap<UUID, EntityDamageEvent.DamageCause> causes = new HashMap<>();

    public SBPlayer(Player player) {
        super(player);
        sbPlayer = this;
    }
0 Answers
Related