9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-26 10:39:07 +00:00

Fix carving from digging bedrock

This commit is contained in:
cyberpwn
2021-08-31 10:13:51 -04:00
parent 43f9efb9e4
commit e63c966756

View File

@@ -68,7 +68,7 @@ public class IrisCarveModifier extends EngineAssignedModifier<BlockData> {
return;
}
if (yy > 256 || yy < 0) {
if (yy >= 256 || yy <= 0) { // Yes, skip bedrock
return;
}