Merge pull request #406 from mrlasagne/patch-1

Fix special masks issue
This commit is contained in:
Matt 2020-04-15 10:28:20 -04:00 committed by GitHub
commit 8369277e05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,7 +56,7 @@ public class BlocksMaskParser extends InputParser<Mask> {
return null;
}
return new BlockMask(context.getExtent(), holders);
} catch (NoMatchException e) {
} catch (InputParseException e) {
return null;
}
}