Fix logic when working in void dimensions
This commit is contained in:
parent
505a9c263e
commit
9cbb9c66a2
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ public abstract class GT_MetaTileEntity_DrillerBase extends GT_MetaTileEntity_Mu
|
||||||
}
|
}
|
||||||
|
|
||||||
protected boolean canLowerPipe(){
|
protected boolean canLowerPipe(){
|
||||||
return !checkBlockAndMeta(xPipe, yHead - 1, zPipe, Blocks.bedrock, W);
|
return yHead > 0 && !checkBlockAndMeta(xPipe, yHead - 1, zPipe, Blocks.bedrock, W);
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean isHasMiningPipes() {
|
private boolean isHasMiningPipes() {
|
||||||
|
|
Loading…
Reference in a new issue