Decreased water turbine torque
This commit is contained in:
parent
4ed2a4b424
commit
1c87ee9858
1 changed files with 2 additions and 2 deletions
|
@ -58,7 +58,7 @@ public class TileWaterTurbine extends TileMechanicalTurbine
|
||||||
if (getMultiBlock().isConstructed())
|
if (getMultiBlock().isConstructed())
|
||||||
torque = (long) (defaultTorque / (1d / multiBlockRadius));
|
torque = (long) (defaultTorque / (1d / multiBlockRadius));
|
||||||
else
|
else
|
||||||
torque = defaultTorque / 20;
|
torque = defaultTorque / 22;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* If this is a horizontal turbine.
|
* If this is a horizontal turbine.
|
||||||
|
@ -89,7 +89,7 @@ public class TileWaterTurbine extends TileMechanicalTurbine
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
maxPower = 3000;
|
maxPower = 2000;
|
||||||
|
|
||||||
int checkX = xCoord;
|
int checkX = xCoord;
|
||||||
int checkY = yCoord - 1;
|
int checkY = yCoord - 1;
|
||||||
|
|
Loading…
Reference in a new issue