Use 0,255 for min/max build height

This commit is contained in:
Jesse Boyd 2018-05-16 12:07:30 +10:00
parent 5d076ef4b2
commit d541115a3b
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ public class MaskedFaweQueue extends DelegateFaweQueue {
public void setMask(Region[] mask) {
switch (mask.length) {
case 0:
region = new HeightBoundExtent(this, FaweLimit.MAX.copy(), Integer.MIN_VALUE, Integer.MAX_VALUE);
region = new HeightBoundExtent(this, FaweLimit.MAX.copy(), 0, 255);
break;
case 1:
region = new SingleRegionExtent(this, FaweLimit.MAX.copy(), mask[0]);