Reordered

This commit is contained in:
Frank 2023-06-07 01:50:09 +02:00
parent 1600d18ee4
commit d588240c7f

View file

@ -31,10 +31,6 @@ public class EndRegistrySupplier extends RegistrySupplier {
@Override
protected List<RegistryInfo<?>> initializeRegistryList(@Nullable List<String> modIDs) {
return List.of(
new RegistryInfo<>(
BCLBiomeRegistry.BCL_BIOMES_REGISTRY,
BiomeData.CODEC
),
new RegistryInfo<>(
SurfaceRuleRegistry.SURFACE_RULES_REGISTRY,
AssignedSurfaceRule.CODEC
@ -62,6 +58,10 @@ public class EndRegistrySupplier extends RegistrySupplier {
Registries.BIOME,
Biome.DIRECT_CODEC,
EndBiomesDataProvider::bootstrap
),
new RegistryInfo<>(
BCLBiomeRegistry.BCL_BIOMES_REGISTRY,
BiomeData.CODEC
)
);
}