Newer
Older
void-pack-super-server / work / decompile-ee3ecae0 / net / minecraft / server / BiomeLayoutFixedConfiguration.java
Simon Lindgren on 26 Mar 2020 422 bytes first commit
package net.minecraft.server;

public class BiomeLayoutFixedConfiguration implements BiomeLayoutConfiguration {

    private BiomeBase a;

    public BiomeLayoutFixedConfiguration(WorldData worlddata) {
        this.a = Biomes.PLAINS;
    }

    public BiomeLayoutFixedConfiguration a(BiomeBase biomebase) {
        this.a = biomebase;
        return this;
    }

    public BiomeBase a() {
        return this.a;
    }
}