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