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

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

package io.github.sefiraat.slimetinker.runnables.event;

import org.bukkit.Material;
import org.bukkit.block.Block;
import org.bukkit.scheduler.BukkitRunnable;

public class RemoveMagmaBlock extends BukkitRunnable {

    private final Block block;

    public RemoveMagmaBlock(Block block) {
        this.block = block;
    }

    @Override
    public void run() {
        block.setType(Material.LAVA);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy