mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-06-17 14:03:55 +00:00
//[h]sphere can now generate ellipsoid (stretched sphere) shapes
This commit is contained in:
@ -30,6 +30,6 @@ public class HollowSphereBrush implements Brush {
|
||||
|
||||
public void build(EditSession editSession, Vector pos, Pattern mat, double size)
|
||||
throws MaxChangedBlocksException {
|
||||
editSession.makeSphere(pos, mat, size, false);
|
||||
editSession.makeSphere(pos, mat, size, size, size, false);
|
||||
}
|
||||
}
|
||||
|
@ -30,6 +30,6 @@ public class SphereBrush implements Brush {
|
||||
|
||||
public void build(EditSession editSession, Vector pos, Pattern mat, double size)
|
||||
throws MaxChangedBlocksException {
|
||||
editSession.makeSphere(pos, mat, size, true);
|
||||
editSession.makeSphere(pos, mat, size, size, size, true);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user