Tweaked Hopper fill speed
This commit is contained in:
parent
ac7ab97353
commit
e2e47f0f81
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ public class TileHopper extends TileBuildCraft implements IInventory {
|
||||||
@Override
|
@Override
|
||||||
public void updateEntity() {
|
public void updateEntity() {
|
||||||
super.updateEntity();
|
super.updateEntity();
|
||||||
if (CoreProxy.proxy.isRenderWorld(worldObj) || worldObj.getWorldTime() % 5 != 0)
|
if (CoreProxy.proxy.isRenderWorld(worldObj) || worldObj.getWorldTime() % 2 != 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
TileEntity tile = this.worldObj.getBlockTileEntity(xCoord, yCoord - 1, zCoord);
|
TileEntity tile = this.worldObj.getBlockTileEntity(xCoord, yCoord - 1, zCoord);
|
||||||
|
|
Loading…
Reference in a new issue