mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-18 18:23:06 +00:00
Fix carving from digging bedrock
This commit is contained in:
parent
43f9efb9e4
commit
e63c966756
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user