minor tweaks to liquid holding blocks, close #1769
This commit is contained in:
parent
44e3aaa1c5
commit
262f2dc22a
3 changed files with 13 additions and 1 deletions
|
@ -38,6 +38,8 @@ public class SchematicEngine extends SchematicTile {
|
|||
cpt.removeTag("progress");
|
||||
cpt.removeTag("energy");
|
||||
cpt.removeTag("heat");
|
||||
cpt.removeTag("tankFuel");
|
||||
cpt.removeTag("tankCoolant");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -21,7 +21,7 @@ public class SchematicRefinery extends SchematicTile {
|
|||
|
||||
@Override
|
||||
public void rotateLeft(IBuilderContext context) {
|
||||
meta = ForgeDirection.values()[meta].getRotation(ForgeDirection.DOWN).ordinal();
|
||||
meta = ForgeDirection.values()[meta].getRotation(ForgeDirection.UP).ordinal();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -17,6 +17,16 @@ import buildcraft.api.blueprints.SchematicTile;
|
|||
|
||||
public class SchematicTank extends SchematicTile {
|
||||
|
||||
@Override
|
||||
public void writeRequirementsToBuilder(IBuilderContext context, LinkedList<ItemStack> requirements) {
|
||||
requirements.add(new ItemStack(block));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void writeRequirementsToSchematic(IBuilderContext context, int x, int y, int z) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void writeToSchematic(IBuilderContext context, int x, int y, int z) {
|
||||
|
||||
|
|
Loading…
Reference in a new issue