mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-22 11:53:29 +01:00
parent
21998e7c2e
commit
67af09918f
1 changed files with 2 additions and 2 deletions
|
@ -61,7 +61,7 @@ public final class ModConfig {
|
||||||
.translation("config." + NaturesAura.MOD_ID + ".auraTypeOverrides")
|
.translation("config." + NaturesAura.MOD_ID + ".auraTypeOverrides")
|
||||||
.defineList("auraTypeOverrides", Collections.emptyList(), s -> true);
|
.defineList("auraTypeOverrides", Collections.emptyList(), s -> true);
|
||||||
this.additionalOres = builder
|
this.additionalOres = builder
|
||||||
.comment("Additional blocks that are recognized as generatable ores for the passive ore generation effect. Each entry needs to be formatted as oredictEntry:oreWeight:dimension where a higher weight makes the ore more likely to spawn with 5000 being the weight of coal, the default ore with the highest weight, and dimension being any of overworld and nether")
|
.comment("Additional blocks that are recognized as generatable ores for the passive ore generation effect. Each entry needs to be formatted as tag_name->oreWeight->dimension where a higher weight makes the ore more likely to spawn with 5000 being the weight of coal, the default ore with the highest weight, and dimension being any of overworld and nether")
|
||||||
.translation("config." + NaturesAura.MOD_ID + ".additionalOres")
|
.translation("config." + NaturesAura.MOD_ID + ".additionalOres")
|
||||||
.defineList("additionalOres", Collections.emptyList(), s -> true);
|
.defineList("additionalOres", Collections.emptyList(), s -> true);
|
||||||
this.oreExceptions = builder
|
this.oreExceptions = builder
|
||||||
|
@ -194,7 +194,7 @@ public final class ModConfig {
|
||||||
|
|
||||||
try {
|
try {
|
||||||
for (String s : this.additionalOres.get()) {
|
for (String s : this.additionalOres.get()) {
|
||||||
String[] split = s.split(":");
|
String[] split = s.split("->");
|
||||||
WeightedOre ore = new WeightedOre(new ResourceLocation(split[0]), Integer.parseInt(split[1]));
|
WeightedOre ore = new WeightedOre(new ResourceLocation(split[0]), Integer.parseInt(split[1]));
|
||||||
String dimension = split[2];
|
String dimension = split[2];
|
||||||
if ("nether".equalsIgnoreCase(dimension)) {
|
if ("nether".equalsIgnoreCase(dimension)) {
|
||||||
|
|
Loading…
Reference in a new issue