going to add a belt based sorter

The idea is to have a sorter arm on the belt to flip items to the left,
right or let them pass. Similar to a pinball table. This block will
allow player to create more complex sorters, as well as item
distrubuters if they set both outputs the same.
This commit is contained in:
Rseifert 2013-02-21 20:43:16 -05:00
parent 60fae11394
commit caf4f11c30
2 changed files with 16 additions and 7 deletions

View file

@ -0,0 +1,16 @@
package assemblyline.common.machine;
import assemblyline.common.TabAssemblyLine;
import net.minecraft.block.material.Material;
import net.minecraft.creativetab.CreativeTabs;
import universalelectricity.prefab.BlockMachine;
public class BlockBeltSorter extends BlockMachine
{
public BlockBeltSorter(int id)
{
super("BlockBeltSorter", id, Material.iron, TabAssemblyLine.INSTANCE);
}
}

View file

@ -75,13 +75,6 @@ public class TileEntityRejector extends TileEntityFilterable
}
}
}
/**
* If a push happened, send a packet to the client to notify it for an animation.
*
* if (!this.worldObj.isRemote && flag) {
* PacketManager.sendPacketToClients(this.getDescriptionPacket()); }
*/
}
catch (Exception e)
{