This commit is contained in:
modmuss50 2019-07-22 11:31:24 +01:00
parent d0dedc6893
commit 50c13bafdc
3 changed files with 93 additions and 93 deletions

View file

@ -77,12 +77,12 @@ license {
group = 'TechReborn'
dependencies {
minecraft "com.mojang:minecraft:1.14.3"
mappings "net.fabricmc:yarn:1.14.3+build.9"
modCompile "net.fabricmc:fabric-loader:0.4.8+build.155"
minecraft "com.mojang:minecraft:1.14.4"
mappings "net.fabricmc:yarn:1.14.4+build.2"
modCompile "net.fabricmc:fabric-loader:0.4.8+build.157"
//Fabric api
modCompile "net.fabricmc.fabric-api:fabric-api:0.3.0+build.187"
modCompile "net.fabricmc.fabric-api:fabric-api:0.3.0+build.200"
modCompile "io.github.prospector.modmenu:ModMenu:1.5.4-85"
@ -90,7 +90,7 @@ dependencies {
// transitive = false
// }
compile 'RebornCore:RebornCore-1.14.3:4.0.0.14'
compile 'RebornCore:RebornCore-1.14.4:4.0.0.14'
compileOnly "com.google.code.findbugs:jsr305:+"
}

View file

@ -1 +1 @@
rootProject.name = "TechReborn-1.14.3"
rootProject.name = "TechReborn-1.14.4"

View file

@ -56,10 +56,10 @@ public class WorldGenerator {
addOre(biome, OreFeatureConfig.Target.NETHERRACK, TRContent.Ores.SPHALERITE);
} else if (biome.getCategory() == Category.THEEND) {
// addOre(biome, IS_ENDSTONE, TRContent.Ores.PERIDOT);
// addOre(biome, IS_ENDSTONE, TRContent.Ores.SHELDONITE);
// addOre(biome, IS_ENDSTONE, TRContent.Ores.SODALITE);
// addOre(biome, IS_ENDSTONE, TRContent.Ores.TUNGSTEN);
// addOre(biome, IS_ENDSTONE, TRContent.Ores.PERIDOT);
// addOre(biome, IS_ENDSTONE, TRContent.Ores.SHELDONITE);
// addOre(biome, IS_ENDSTONE, TRContent.Ores.SODALITE);
// addOre(biome, IS_ENDSTONE, TRContent.Ores.TUNGSTEN);
} else {
addOre(biome, OreFeatureConfig.Target.NATURAL_STONE, TRContent.Ores.BAUXITE);
addOre(biome, OreFeatureConfig.Target.NATURAL_STONE, TRContent.Ores.COPPER);