fixed NPE for #1513

This commit is contained in:
SpaceToad 2014-03-17 08:45:56 +01:00
parent d28c9aa0a1
commit 664004a9d9

View file

@ -22,9 +22,9 @@ public class SchematicToBuild {
public Schematic getSchematic () {
if (schematic == null) {
return schematic;
} else {
return new SchematicMask(false);
} else {
return schematic;
}
}