Fixed minor bugs
This commit is contained in:
parent
cb22292c9a
commit
dbe53cbe41
2 changed files with 8 additions and 3 deletions
|
@ -54,7 +54,7 @@ public class TileEntityManipulator extends TileEntityFilterable implements IReds
|
|||
@Override
|
||||
protected void onUpdate()
|
||||
{
|
||||
if (FMLCommonHandler.instance().getEffectiveSide() == Side.SERVER)
|
||||
if (!this.worldObj.isRemote)
|
||||
{
|
||||
if (this.ticks % 20 == 0)
|
||||
{
|
||||
|
@ -225,7 +225,6 @@ public class TileEntityManipulator extends TileEntityFilterable implements IReds
|
|||
/**
|
||||
* Try to put items into a chest.
|
||||
*/
|
||||
//System.out.println(itemStack.hashCode() + " @ " + direction.toString());
|
||||
if (tileEntity instanceof TileEntityChest)
|
||||
{
|
||||
TileEntityChest[] chests = { (TileEntityChest) tileEntity, null };
|
||||
|
|
|
@ -154,7 +154,7 @@ public class BlockConveyorBelt extends BlockMachine
|
|||
}
|
||||
|
||||
((EntityItem) entity).age++;
|
||||
((EntityItem) entity).delayBeforeCanPickup = 2;
|
||||
((EntityItem) entity).delayBeforeCanPickup = 20;
|
||||
entity.onGround = false;
|
||||
}
|
||||
|
||||
|
@ -203,4 +203,10 @@ public class BlockConveyorBelt extends BlockMachine
|
|||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int damageDropped(int par1)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue