Fix copper oregen config typo

This commit is contained in:
drcrazy 2020-04-06 14:00:54 +03:00
parent 49e1ce3c2e
commit 35e4675c6d
2 changed files with 4 additions and 1 deletions

View file

@ -640,4 +640,7 @@ public class TechRebornConfig {
@Config(config = "world", category = "ore", key = "enableTungstenOre", comment = "Generate Tungsten Ore in The End.")
public static boolean enableTungstenOre = true;
}

View file

@ -135,7 +135,7 @@ public class WorldGenerator {
if (TechRebornConfig.enableBauxiteOre){
addOre(biome, OreFeatureConfig.Target.NATURAL_STONE, TRContent.Ores.BAUXITE);
}
if (TechRebornConfig.enableBauxiteOre){
if (TechRebornConfig.enableCopperOre){
addOre(biome, OreFeatureConfig.Target.NATURAL_STONE, TRContent.Ores.COPPER);
}
if (TechRebornConfig.enableGalenaOre){