Add vanilla cave support back

This commit is contained in:
Daniel Mills 2020-12-13 09:40:20 -05:00
parent 9d18a1297b
commit ab64a8f8e2

View File

@ -656,7 +656,15 @@ public class EngineCompositeGenerator extends ChunkGenerator implements IrisAcce
}
public boolean isVanillaCaves() {
return false;
try
{
return getComposite().getDefaultEngine().getDimension().isVanillaStructures();
}
catch(Throwable e)
{
return false;
}
}
public KList<IrisBiome> getAllBiomes(String worldName) {