Fix Piston retract with Block on Region Floor and Piston above #271
@ -144,7 +144,7 @@ public class Region {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public boolean inRegion(Block block){
|
public boolean inRegion(Block block){
|
||||||
return in2dRegion(block) && minY < block.getY() && block.getY() < maxY;
|
return in2dRegion(block) && block.getY() >= minY - 1 && block.getY() < maxY;
|
||||||
}
|
}
|
||||||
|
|
||||||
public interface TriConsumer<T, V, U>{
|
public interface TriConsumer<T, V, U>{
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren