Disk Manipulator now has a front texture and connected state

This commit is contained in:
Raoul Van den Berge
2016-09-26 21:19:33 +02:00
parent 0488e03754
commit b4fe9164c3
3 changed files with 41 additions and 12 deletions

View File

@@ -40,8 +40,13 @@ public class BlockDiskManipulator extends BlockNode {
super.breakBlock(world, pos, state);
}
@Override
public boolean hasConnectivityState() {
return true;
}
@Override
public EnumPlacementType getPlacementType() {
return null;
return EnumPlacementType.HORIZONTAL;
}
}

View File

@@ -167,6 +167,11 @@ public class TileDiskManipulator extends TileNode implements IComparable, IFilte
return RefinedStorage.INSTANCE.config.diskManipulatorUsage + upgrades.getEnergyUsage();
}
@Override
public boolean hasConnectivityState() {
return true;
}
@Override
public void updateNode() {
if (ticks % upgrades.getSpeed() != 0) {