9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-25 18:19:14 +00:00

Merge pull request #365 from CocoTheOwner/fixCustomField

Undo a change that breaks when Biome.CUSTOM is not a field on your MC Distribution
This commit is contained in:
Dan
2021-06-09 08:47:03 -04:00
committed by GitHub

View File

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