Update to release version of 1.16.4

This commit is contained in:
drcrazy 2020-11-05 14:31:28 +03:00
parent 234250fca2
commit d36a61be39
3 changed files with 7 additions and 7 deletions

View file

@ -79,15 +79,15 @@ configurations.all {
} }
dependencies { dependencies {
minecraft "com.mojang:minecraft:1.16.4-rc1" minecraft "com.mojang:minecraft:1.16.4"
mappings "net.fabricmc:yarn:1.16.4-rc1+build.2:v2" mappings "net.fabricmc:yarn:1.16.4+build.6:v2"
modImplementation "net.fabricmc:fabric-loader:0.10.6+build.214" modImplementation "net.fabricmc:fabric-loader:0.10.6+build.214"
//Fabric api //Fabric api
modImplementation "net.fabricmc.fabric-api:fabric-api:0.25.0+build.415-1.16" modImplementation "net.fabricmc.fabric-api:fabric-api:0.25.0+build.415-1.16"
optionalDependency ("me.shedaniel:RoughlyEnoughItems:5.2.3") optionalDependency ("me.shedaniel:RoughlyEnoughItems:5.8.0")
disabledOptionalDependency ('com.github.emilyploszaj:trinkets:2.6.0') disabledOptionalDependency ('com.github.emilyploszaj:trinkets:2.6.7')
def rcVersion = 'RebornCore:RebornCore-1.16:+' def rcVersion = 'RebornCore:RebornCore-1.16:+'
modApi (rcVersion) { modApi (rcVersion) {
@ -99,7 +99,7 @@ dependencies {
optionalDependency "com.github.dexman545:autoswitch-api:-SNAPSHOT" optionalDependency "com.github.dexman545:autoswitch-api:-SNAPSHOT"
modRuntime "curse.maven:applied-energistics-2:3060182" modRuntime "curse.maven:applied-energistics-2:3100394"
modRuntime "alexiil.mc.lib:libblockattributes-core:0.8.0" modRuntime "alexiil.mc.lib:libblockattributes-core:0.8.0"
modRuntime "alexiil.mc.lib:libblockattributes-items:0.8.0" modRuntime "alexiil.mc.lib:libblockattributes-items:0.8.0"
modRuntime "alexiil.mc.lib:libblockattributes-fluids:0.8.0" modRuntime "alexiil.mc.lib:libblockattributes-fluids:0.8.0"

View file

@ -65,7 +65,7 @@ public class DataDrivenFeature {
this(identifier, biomeSelector, Feature.ORE.configure( this(identifier, biomeSelector, Feature.ORE.configure(
new OreFeatureConfig(ruleTest, blockState, veinSize) new OreFeatureConfig(ruleTest, blockState, veinSize)
) )
.method_30377(maxY) .rangeOf(maxY)
.spreadHorizontally() .spreadHorizontally()
.repeat(veinCount), GenerationStep.Feature.UNDERGROUND_ORES); .repeat(veinCount), GenerationStep.Feature.UNDERGROUND_ORES);
} }

View file

@ -49,7 +49,7 @@ public class RubberTreeFeature extends TreeFeature {
} }
public static class FoliagePlacer extends BlobFoliagePlacer { public static class FoliagePlacer extends BlobFoliagePlacer {
public static final Codec<FoliagePlacer> CODEC = RecordCodecBuilder.create((instance) -> method_28838(instance) public static final Codec<FoliagePlacer> CODEC = RecordCodecBuilder.create((instance) -> createCodec(instance)
.and( .and(
Codec.INT.fieldOf("spireHeight").forGetter(FoliagePlacer::getSpireHeight) Codec.INT.fieldOf("spireHeight").forGetter(FoliagePlacer::getSpireHeight)
) )