use of org.spongepowered.api.world.gen.GenerationPopulator in project LanternServer by LanternPowered.
the class LanternBiomeGenerationSettingsBuilder method generationPopulators.
@Override
public Builder generationPopulators(Iterable<GenerationPopulator> populators) {
checkNotNull(populators, "populators");
this.generationPopulators.clear();
for (GenerationPopulator populator : populators) {
this.generationPopulators.add(checkNotNull(populator, "populator"));
}
return this;
}
Aggregations