mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-22 17:27:38 +00:00
Fix build
(cherry picked from commit dc2e1bec1eca4d7f8d24bd40e32c385d91af3099)
This commit is contained in:
parent
b6b6ba7265
commit
af890cf21d
@ -146,7 +146,7 @@ public class AngleMask extends SolidBlockMask implements ResettableMask {
|
||||
int z = vector.getBlockZ();
|
||||
|
||||
if ((lastX == (lastX = x) & lastZ == (lastZ = z))) {
|
||||
int height = getHeight(extent, x, y, z);
|
||||
int height = getHeight(getExtent(), x, y, z);
|
||||
if (y <= height) {
|
||||
return overlay ? (lastValue && y == height) : lastValue;
|
||||
}
|
||||
@ -154,15 +154,15 @@ public class AngleMask extends SolidBlockMask implements ResettableMask {
|
||||
|
||||
MutableBlockVector3 mutable = new MutableBlockVector3(x, y, z);
|
||||
|
||||
if (!mask.test(extent, mutable)) {
|
||||
if (!mask.test(getExtent(), mutable)) {
|
||||
return false;
|
||||
}
|
||||
if (overlay) {
|
||||
if (y < maxY && !adjacentAir(extent, mutable)) {
|
||||
if (y < maxY && !adjacentAir(getExtent(), mutable)) {
|
||||
return lastValue = false;
|
||||
}
|
||||
}
|
||||
return testSlope(extent, x, y, z);
|
||||
return testSlope(getExtent(), x, y, z);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user