Fixed the fix
Dieser Commit ist enthalten in:
Ursprung
fd9ed60c0a
Commit
17ec28170a
@ -144,7 +144,7 @@ public class Region {
|
||||
}
|
||||
|
||||
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>{
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren