Fixed large water turbine generating same power as small turbine
This commit is contained in:
parent
62f2a4422f
commit
d81f2fa6fa
1 changed files with 2 additions and 2 deletions
|
@ -65,10 +65,10 @@ public class TileWaterTurbine extends TileMechanicalTurbine
|
||||||
worldObj.setBlock(xCoord, yCoord - 1, zCoord, Block.waterStill.blockID);
|
worldObj.setBlock(xCoord, yCoord - 1, zCoord, Block.waterStill.blockID);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (getMultiBlock().isPrimary())
|
else
|
||||||
{
|
{
|
||||||
int checkX = xCoord;
|
int checkX = xCoord;
|
||||||
int checkY = yCoord - (this.getMultiBlock().isConstructed() ? 1 + multiBlockRadius : 1);
|
int checkY = yCoord - 1;
|
||||||
int checkZ = zCoord;
|
int checkZ = zCoord;
|
||||||
int blockID = worldObj.getBlockId(xCoord, checkY, checkZ);
|
int blockID = worldObj.getBlockId(xCoord, checkY, checkZ);
|
||||||
int metadata = worldObj.getBlockMetadata(xCoord, checkY, checkZ);
|
int metadata = worldObj.getBlockMetadata(xCoord, checkY, checkZ);
|
||||||
|
|
Loading…
Reference in a new issue