Added stuff I missed.

This commit is contained in:
Waterpicker 2021-10-08 16:42:08 -05:00
parent 58eba20420
commit d6534a694d
6 changed files with 13 additions and 9 deletions

View file

@ -67,6 +67,8 @@ repositories {
url = 'https://maven.terraformersmc.com/'
}
maven { url 'https://dl.cloudsmith.io/public/geckolib3/geckolib/maven/' }
maven {
name = "Libs"
url = "./libs"
@ -154,6 +156,8 @@ dependencies {
modCompileOnly "worldedit:worldedit:7.2.6"
modRuntime "worldedit:worldedit:7.2.6"
modImplementation 'software.bernie.geckolib:geckolib-fabric-1.17:3.0.13:dev'
datagenImplementation sourceSets.main.output
datagenImplementation sourceSets.main.compileClasspath
datagenRuntimeOnly sourceSets.main.runtimeClasspath

View file

@ -3,7 +3,7 @@ package org.dimdev.dimdoors.block;
import java.util.Random;
import org.dimdev.dimdoors.world.ModDimensions;
import org.dimdev.dimdoors.world.limbo.LimboDecay;
import org.dimdev.dimdoors.world.decay.LimboDecay;
import net.minecraft.block.Block;
import net.minecraft.block.BlockState;

View file

@ -106,17 +106,17 @@ public final class ModBiomes {
GenerationStep.Feature.SURFACE_STRUCTURES,
ModFeatures.LIMBO_GATEWAY_CONFIGURED_FEATURE
)
.feature(
GenerationStep.Feature.UNDERGROUND_ORES,
ModFeatures.SOLID_STATIC_ORE
)
.feature(GenerationStep.Feature.UNDERGROUND_ORES,
ModFeatures.DECAYED_BLOCK_ORE)
// .feature(
// GenerationStep.Feature.UNDERGROUND_ORES,
// ModFeatures.SOLID_STATIC_ORE
// )
// .feature(GenerationStep.Feature.UNDERGROUND_ORES,
// ModFeatures.DECAYED_BLOCK_ORE)
.surfaceBuilder(
SurfaceBuilder.DEFAULT.withConfig(
new TernarySurfaceConfig(
ModBlocks.UNFOLDED_BLOCK.getDefaultState(),
ModBlocks.UNWARPED_BLOCK.getDefaultState(),
ModBlocks.UNRAVELLED_FABRIC.getDefaultState(),
ModBlocks.UNRAVELLED_FABRIC.getDefaultState(),
ModBlocks.ETERNAL_FLUID.getDefaultState()
)
))