All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.sefiraat.slimetinker.runnables.event.RemoveWolf Maven / Gradle / Ivy

The newest version!
package io.github.sefiraat.slimetinker.runnables.event;

import org.bukkit.entity.Wolf;
import org.bukkit.scheduler.BukkitRunnable;

public class RemoveWolf extends BukkitRunnable {

    private final Wolf wolf;

    public RemoveWolf(Wolf wolf) {
        this.wolf = wolf;
    }

    @Override
    public void run() {
        wolf.remove();
        this.cancel();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy