mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-27 23:27:59 +01:00
Fix load order
This commit is contained in:
parent
7a1b3aab98
commit
368d83720f
2 changed files with 6 additions and 2 deletions
|
@ -53,7 +53,9 @@ class CloudDungeonFeature extends AbstractTempleFeature<DefaultFeatureConfig> {
|
||||||
Biomes.ICE_SPIKES,
|
Biomes.ICE_SPIKES,
|
||||||
Biomes.TAIGA
|
Biomes.TAIGA
|
||||||
).forEach(biome -> {
|
).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)));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -56,7 +56,9 @@ class RuinFeature extends AbstractTempleFeature<DefaultFeatureConfig> {
|
||||||
Biomes.DARK_FOREST,
|
Biomes.DARK_FOREST,
|
||||||
Biomes.DARK_FOREST_HILLS
|
Biomes.DARK_FOREST_HILLS
|
||||||
).forEach(biome -> {
|
).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)));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue