use of org.spongepowered.common.world.type.SpongeWorldTypeNether in project SpongeCommon by SpongePowered.
the class GeneratorTypeRegistryModule method registerDefaults.
@Override
public void registerDefaults() {
for (WorldType worldType : WorldType.WORLD_TYPES) {
this.registerAdditionalCatalog((GeneratorType) worldType);
}
this.registerAdditionalCatalog((GeneratorType) new SpongeWorldTypeEnd());
this.registerAdditionalCatalog((GeneratorType) new SpongeWorldTypeNether());
this.registerAdditionalCatalog((GeneratorType) new SpongeWorldTypeOverworld());
}
Aggregations