Fix BlendBall for no mask

This commit is contained in:
dordsor21 2022-06-27 13:38:22 +01:00
parent 041f4505a3
commit 3212dddb2d
No known key found for this signature in database
GPG Key ID: 1E53E88969FFCF0B

View File

@ -136,7 +136,7 @@ public class BlendBall implements Brush {
}
private boolean maskFails(EditSession editSession, MutableBlockVector3 mutable) {
return mask == null || !mask.test(editSession, mutable);
return mask != null && !mask.test(editSession, mutable);
}
}