diff --git a/src/main/java/biomesoplenty/common/biome/BiomeBOP.java b/src/main/java/biomesoplenty/common/biome/BiomeBOP.java index ef30ad72a..47fd149a0 100644 --- a/src/main/java/biomesoplenty/common/biome/BiomeBOP.java +++ b/src/main/java/biomesoplenty/common/biome/BiomeBOP.java @@ -8,6 +8,7 @@ package biomesoplenty.common.biome; import biomesoplenty.api.enums.BOPClimates; +import net.minecraft.init.Biomes; import net.minecraft.util.registry.IRegistry; import net.minecraft.world.biome.Biome; @@ -19,7 +20,7 @@ public class BiomeBOP extends Biome { protected Map weightMap = new HashMap(); public boolean canSpawnInBiome; - public int beachBiomeId = -1; + public int beachBiomeId = IRegistry.BIOME.getId(Biomes.BEACH); public BiomeBOP(BiomeBuilder builder) {