mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2026-06-04 01:16:54 +00:00
Fix BlendBall for no mask
This commit is contained in:
+1
-1
@@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user