Undo a change that breaks when Biome.CUSTOM is not a field on your MC distribution

This commit is contained in:
CocoTheOwner 2021-06-08 16:35:01 +02:00
parent 5e838e3f10
commit 5226106ff0

View File

@ -242,10 +242,8 @@ public class DirectWorldWriter {
for(Biome biome : Biome.values()) for(Biome biome : Biome.values())
{ {
if (biome != Biome.CUSTOM) {
biomeIds.put(biome, INMS.get().getBiomeId(biome)); biomeIds.put(biome, INMS.get().getBiomeId(biome));
} }
}
return biomeIds; return biomeIds;
} }