Fix load order

This commit is contained in:
Sollace 2020-04-24 18:57:59 +02:00
parent 7a1b3aab98
commit 368d83720f
2 changed files with 6 additions and 2 deletions

View file

@ -53,7 +53,9 @@ class CloudDungeonFeature extends AbstractTempleFeature<DefaultFeatureConfig> {
Biomes.ICE_SPIKES,
Biomes.TAIGA
).forEach(biome -> {
biome.addFeature(GenerationStep.Feature.LOCAL_MODIFICATIONS, UStructures.CLOUD_HOUSE.configure(FeatureConfig.DEFAULT).createDecoratedFeature(Decorator.NOPE.configure(NopeDecoratorConfig.DEFAULT)));
biome.addFeature(GenerationStep.Feature.LOCAL_MODIFICATIONS, configure(FeatureConfig.DEFAULT)
.createDecoratedFeature(Decorator.NOPE
.configure(NopeDecoratorConfig.DEFAULT)));
});
}

View file

@ -56,7 +56,9 @@ class RuinFeature extends AbstractTempleFeature<DefaultFeatureConfig> {
Biomes.DARK_FOREST,
Biomes.DARK_FOREST_HILLS
).forEach(biome -> {
biome.addFeature(GenerationStep.Feature.SURFACE_STRUCTURES, UStructures.CLOUD_HOUSE.configure(FeatureConfig.DEFAULT).createDecoratedFeature(Decorator.NOPE.configure(DecoratorConfig.DEFAULT)));
biome.addFeature(GenerationStep.Feature.SURFACE_STRUCTURES,
configure(FeatureConfig.DEFAULT)
.createDecoratedFeature(Decorator.NOPE.configure(DecoratorConfig.DEFAULT)));
});
}