mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-22 17:27:38 +00:00
Fix BlendBall for no mask
This commit is contained in:
parent
041f4505a3
commit
3212dddb2d
@ -136,7 +136,7 @@ public class BlendBall implements Brush {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private boolean maskFails(EditSession editSession, MutableBlockVector3 mutable) {
|
private boolean maskFails(EditSession editSession, MutableBlockVector3 mutable) {
|
||||||
return mask == null || !mask.test(editSession, mutable);
|
return mask != null && !mask.test(editSession, mutable);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user