This commit is contained in:
Jesse Boyd 2016-09-25 05:02:03 +10:00
parent fca33e5e87
commit c676d89aa6

View File

@ -171,7 +171,7 @@ public class DefaultMaskParser extends InputParser<Mask> {
if (split.length == 2) { if (split.length == 2) {
requiredCount = Integer.parseInt(split[1]); requiredCount = Integer.parseInt(split[1]);
} }
return new AdjacentMask(extent, worldEdit.getBlockFactory().parseFromListInput(component.substring(1), tempContext)); return new AdjacentMask(extent, worldEdit.getBlockFactory().parseFromListInput(component.substring(1), tempContext), requiredCount);
} catch (NumberFormatException e) { } catch (NumberFormatException e) {
throw new InputParseException("Unknown adjacent mask '" + component + "' (not in form `~<ids>[=count]`)"); throw new InputParseException("Unknown adjacent mask '" + component + "' (not in form `~<ids>[=count]`)");
} }