mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-18 10:12:53 +00:00
Fix decorant cave issues fixes #586
This commit is contained in:
parent
548ed4a1f0
commit
773f24238f
@ -171,6 +171,16 @@ public class IrisCarveModifier extends EngineAssignedModifier<BlockData> {
|
|||||||
int thickness = zone.airThickness();
|
int thickness = zone.airThickness();
|
||||||
String customBiome = "";
|
String customBiome = "";
|
||||||
|
|
||||||
|
if(B.isDecorant(output.get(rx, zone.ceiling+1, rz)))
|
||||||
|
{
|
||||||
|
output.set(rx, zone.ceiling+1, rz, AIR);
|
||||||
|
}
|
||||||
|
|
||||||
|
if(B.isDecorant(output.get(rx, zone.ceiling, rz)))
|
||||||
|
{
|
||||||
|
output.set(rx, zone.ceiling, rz, AIR);
|
||||||
|
}
|
||||||
|
|
||||||
if (M.r(1D / 16D)) {
|
if (M.r(1D / 16D)) {
|
||||||
mantle.set(xx, zone.ceiling, zz, MarkerMatter.CAVE_CEILING);
|
mantle.set(xx, zone.ceiling, zz, MarkerMatter.CAVE_CEILING);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user