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

net.minestom.server.instance.heightmap.WorldSurfaceHeightmap Maven / Gradle / Ivy

There is a newer version: 7320437640
Show newest version
package net.minestom.server.instance.heightmap;

import net.minestom.server.instance.Chunk;
import net.minestom.server.instance.block.Block;
import org.jetbrains.annotations.NotNull;

public class WorldSurfaceHeightmap extends Heightmap {
    public WorldSurfaceHeightmap(Chunk attachedChunk) {
        super(attachedChunk);
    }

    @Override
    protected boolean checkBlock(@NotNull Block block) {
        return !block.isAir();
    }

    @Override
    public String NBTName() {
        return "WORLD_SURFACE";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy