This commit is contained in:
DarkGuardsman 2013-07-21 22:51:02 -04:00
parent dce6e49a69
commit 612e1cfe26
10 changed files with 7 additions and 49 deletions

View file

@ -70,11 +70,6 @@ public class TileEntityArmbot extends TileEntityAssembly implements IMultiBlock,
/** Client Side Object Storage */
public EntityItem renderEntityItem = null;
public TileEntityArmbot()
{
super(5);
}
@Override
public void initiate()
{

View file

@ -26,6 +26,7 @@ public class ItemImprinter extends Item
this.setUnlocalizedName("imprint");
this.setCreativeTab(TabAssemblyLine.INSTANCE);
this.setHasSubtypes(true);
this.maxStackSize = 1;
}
@Override

View file

@ -16,17 +16,12 @@ import assemblyline.common.machine.TileEntityAssembly;
public abstract class TileEntityFilterable extends TileEntityAssembly implements IRotatable, IFilterable, IPacketReceiver
{
public TileEntityFilterable(int tickEnergy)
{
super(tickEnergy);
// TODO Auto-generated constructor stub
}
private ItemStack filterItem;
private boolean inverted;
/** Looks through the things in the filter and finds out which item is being filtered.
*
*
* @return Is this filterable block filtering this specific ItemStack? */
public boolean isFiltering(ItemStack itemStack)
{

View file

@ -28,15 +28,10 @@ import dark.library.machine.TileEntityRunnableMachine;
/** A class to be inherited by all machines on the assembly line. This class acts as a single peace
* in a network of similar tiles allowing all to share power from one or more sources
*
*
* @author DarkGuardsman */
public abstract class TileEntityAssembly extends TileEntityRunnableMachine implements INetworkPart, IPacketReceiver, IConductor
{
public TileEntityAssembly(float d)
{
super(d);
// TODO Auto-generated constructor stub
}
/** Is the tile currently powered allowing it to run */
public boolean running = false;
@ -201,7 +196,7 @@ public abstract class TileEntityAssembly extends TileEntityRunnableMachine imple
}
/** Handles reduced data from the main packet method
*
*
* @param id - packet ID
* @param dis - data
* @param player - player

View file

@ -25,11 +25,6 @@ public class TileEntityManipulator extends TileEntityFilterable implements IRota
/** The class that interacts with inventories for this machine */
private InvInteractionHelper invExtractionHelper;
public TileEntityManipulator()
{
super(1);
}
@Override
public void onUpdate()
{

View file

@ -19,12 +19,6 @@ public class TileEntityRejector extends TileEntityFilterable
/** should the piston fire, or be extended */
public boolean firePiston = false;
public TileEntityRejector()
{
super(1);
// TODO Auto-generated constructor stub
}
@Override
public void onUpdate()
{

View file

@ -43,11 +43,6 @@ public class TileEntityConveyorBelt extends TileEntityAssembly implements IPacke
/** Entities that are ignored allowing for other tiles to interact with them */
public List<Entity> IgnoreList = new ArrayList<Entity>();
public TileEntityConveyorBelt()
{
super(0.1f);
// TODO Auto-generated constructor stub
}
@Override
public void onUpdate()

View file

@ -17,11 +17,10 @@ public class TileEntityCraneController extends TileEntityAssembly implements ICr
public TileEntityCraneController()
{
super(10);
width = depth = 0;
isCraneValid = false;
}
@Override
public void initiate()
{
@ -52,7 +51,7 @@ public class TileEntityCraneController extends TileEntityAssembly implements ICr
return ForgeDirection.getOrientation(this.worldObj.getBlockMetadata(this.xCoord, this.yCoord, this.zCoord));
}
@Override
public void updateEntity()

View file

@ -7,12 +7,6 @@ import assemblyline.common.machine.TileEntityAssembly;
public class TileEntityCraneRail extends TileEntityAssembly implements ICraneStructure
{
public TileEntityCraneRail()
{
super(0);
// TODO Auto-generated constructor stub
}
@Override
public boolean canFrameConnectTo(ForgeDirection side)
{
@ -29,7 +23,7 @@ public class TileEntityCraneRail extends TileEntityAssembly implements ICraneStr
public void onUpdate()
{
// TODO Auto-generated method stub
}
}

View file

@ -17,11 +17,6 @@ public class TileEntityDetector extends TileEntityFilterable
private boolean powering = false;
public TileEntityDetector()
{
super(1);
}
@Override
public void updateEntity()
{