diff --git a/api/buildcraft/api/blueprints/SchematicBlock.java b/api/buildcraft/api/blueprints/SchematicBlock.java index 693fb857..b14ba29e 100755 --- a/api/buildcraft/api/blueprints/SchematicBlock.java +++ b/api/buildcraft/api/blueprints/SchematicBlock.java @@ -52,11 +52,6 @@ public class SchematicBlock extends SchematicBlockBase { return block == context.world().getBlock(x, y, z) && meta == context.world().getBlockMetadata(x, y, z); } - @Override - public void rotateLeft(IBuilderContext context) { - - } - @Override public void writeToWorld(IBuilderContext context, int x, int y, int z, LinkedList stacks) { // Meta needs to be specified twice, depending on the block behavior diff --git a/common/buildcraft/energy/SchematicEngine.java b/common/buildcraft/energy/SchematicEngine.java index 97883719..6a7e7ba4 100644 --- a/common/buildcraft/energy/SchematicEngine.java +++ b/common/buildcraft/energy/SchematicEngine.java @@ -30,6 +30,8 @@ public class SchematicEngine extends SchematicTile { @Override public void writeToSchematic(IBuilderContext context, int x, int y, int z) { + super.writeToSchematic(context, x, y, z); + TileEngine engine = (TileEngine) context.world().getTileEntity(x, y, z); cpt.setInteger("orientation", engine.orientation.ordinal());