Fixes
This commit is contained in:
parent
7c6da348ef
commit
a3fada3068
4 changed files with 13 additions and 2 deletions
|
@ -37,6 +37,7 @@ public class EndBiomes {
|
|||
|
||||
public static final BiomePicker LAND_BIOMES = new BiomePicker();
|
||||
public static final BiomePicker VOID_BIOMES = new BiomePicker();
|
||||
public static final List<EndBiome> SUBBIOMES = Lists.newArrayList();
|
||||
|
||||
private static Registry<Biome> biomeRegistry;
|
||||
|
||||
|
@ -103,6 +104,7 @@ public class EndBiomes {
|
|||
EndBiome endBiome = new EndBiome(biome, genChance);
|
||||
parent.addSubBiome(endBiome);
|
||||
makeLink(endBiome);
|
||||
SUBBIOMES.add(endBiome);
|
||||
return endBiome;
|
||||
}
|
||||
|
||||
|
@ -110,6 +112,7 @@ public class EndBiomes {
|
|||
registerBiomeDirect(biome);
|
||||
parent.addSubBiome(biome);
|
||||
makeLink(biome);
|
||||
SUBBIOMES.add(biome);
|
||||
return biome;
|
||||
}
|
||||
|
||||
|
@ -170,6 +173,7 @@ public class EndBiomes {
|
|||
List<EndBiome> result = Lists.newArrayList();
|
||||
result.addAll(EndBiomes.LAND_BIOMES.getBiomes());
|
||||
result.addAll(EndBiomes.VOID_BIOMES.getBiomes());
|
||||
result.addAll(SUBBIOMES);
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -47,6 +47,7 @@ public class TranslationHelper {
|
|||
EndBiomes.getModBiomes().forEach((endBiome) -> {
|
||||
if (endBiome.getID().getNamespace().equals(BetterEnd.MOD_ID)) {
|
||||
String name = "biome." + BetterEnd.MOD_ID + "." + endBiome.getID().getPath();
|
||||
System.out.println(name);
|
||||
if (!translationEn.has(name)) {
|
||||
missingNamesEn.add(name);
|
||||
}
|
||||
|
|
|
@ -222,5 +222,8 @@
|
|||
"block.betterend.lacugrove_trapdoor": "Lacugrove Trapdoor",
|
||||
|
||||
"block.betterend.lacugrove_leaves": "Lacugrove Leaves",
|
||||
"block.betterend.lacugrove_sapling": "Lacugrove Sapling"
|
||||
"block.betterend.lacugrove_sapling": "Lacugrove Sapling",
|
||||
|
||||
"biome.betterend.megalake_grove": "Megalake Grove",
|
||||
"biome.betterend.painted_mountains": "Painted Mountains"
|
||||
}
|
|
@ -224,5 +224,8 @@
|
|||
"block.betterend.lacugrove_trapdoor": "Люк из оземангра",
|
||||
|
||||
"block.betterend.lacugrove_leaves": "Листья оземангра",
|
||||
"block.betterend.lacugrove_sapling": "Саженец оземангра"
|
||||
"block.betterend.lacugrove_sapling": "Саженец оземангра",
|
||||
|
||||
"biome.betterend.megalake_grove": "Мегаозёрная роща",
|
||||
"biome.betterend.painted_mountains": "Окрашенные горы"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue