Set default number of iterations for snow smooth brush to 1.

This commit is contained in:
dordsor21 2021-08-23 21:27:35 +01:00
parent 0aadef97d0
commit c0893a404d
No known key found for this signature in database
GPG Key ID: 1E53E88969FFCF0B

View File

@ -1327,12 +1327,12 @@ public class BrushCommands {
@CommandPermissions("worldedit.brush.snowsmooth")
public void snowSmoothBrush(
Player player, LocalSession session,
//FAWE start - Expression > double
//FAWE start - Expression > double, default iteration number 1 is much better.
@Arg(desc = "The radius to sample for softening", def = "2")
Expression radius,
//FAWE end
@Arg(desc = "The number of iterations to perform", def = "4")
@Arg(desc = "The number of iterations to perform", def = "1")
int iterations,
//FAWE end
@ArgFlag(name = 'l', desc = "The number of snow blocks under snow", def = "1")
int snowBlockCount,
@ArgFlag(name = 'm', desc = "The mask of blocks to use for the heightmap")