Missing names list
This commit is contained in:
parent
6c894f3abb
commit
79520978ad
5 changed files with 43 additions and 6 deletions
|
@ -144,12 +144,7 @@ public class BiomeRegistry {
|
|||
EndBiome endBiome = CLIENT.get(biome);
|
||||
if (endBiome == null) {
|
||||
Identifier id = MinecraftClient.getInstance().world.getRegistryManager().get(Registry.BIOME_KEY).getId(biome);
|
||||
if (id == null) {
|
||||
endBiome = END;
|
||||
}
|
||||
else {
|
||||
endBiome = ID_MAP.getOrDefault(id, END);
|
||||
}
|
||||
endBiome = id == null ? END : ID_MAP.getOrDefault(id, END);
|
||||
CLIENT.put(biome, endBiome);
|
||||
}
|
||||
return endBiome;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue