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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user