Fixed /removenear not taking a default size argument.
This commit is contained in:
@@ -204,7 +204,7 @@ public class UtilityCommands {
|
||||
throws WorldEditException {
|
||||
|
||||
BaseBlock block = we.getBlock(player, args.getString(0), true);
|
||||
int size = Math.max(1, args.getInteger(1));
|
||||
int size = Math.max(1, args.getInteger(1, 50));
|
||||
we.checkMaxRadius(size);
|
||||
|
||||
int affected = editSession.removeNear(
|
||||
|
||||
Reference in New Issue
Block a user