geforkt von Mirrors/FastAsyncWorldEdit
Fix BlendBall for no mask
Dieser Commit ist enthalten in:
Ursprung
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);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren