Update DirectWorldWriter.java

This commit is contained in:
CocoTheOwner 2021-06-08 21:08:04 +02:00
parent 5226106ff0
commit 97a6395ddd

View File

@ -242,7 +242,9 @@ public class DirectWorldWriter {
for(Biome biome : Biome.values())
{
biomeIds.put(biome, INMS.get().getBiomeId(biome));
if (!biome.name().equals("CUSTOM")) {
biomeIds.put(biome, INMS.get().getBiomeId(biome));
}
}
return biomeIds;