WIP: add ore generation

This commit is contained in:
Aleksey 2020-09-30 18:00:47 +03:00
parent ba4bc366c8
commit 6b20a142a1
12 changed files with 93 additions and 2 deletions

View file

@ -7,7 +7,7 @@ import ru.betterend.world.features.MossyGlowshroomFeature;
public class FeatureRegistry {
public static final EndFeature MOSSY_GLOWSHROOM = new EndFeature("mossy_glowshroom", new MossyGlowshroomFeature(), 1);
public static final EndFeature END_LAKE = EndFeature.makeLakeFeature("end_lake", new EndLakeFeature(), 100);
public static final EndFeature ENDER_ORE = EndFeature.makeOreFeature("ender_ore", BlockRegistry.ENDER_ORE, 2, 3, 0, 4, 128);
public static final EndFeature ENDER_ORE = EndFeature.makeOreFeature("ender_ore", BlockRegistry.ENDER_ORE, 6, 3, 0, 4, 96);
public static void register() {}
}