Oops, should have increased the water turbine torque

This commit is contained in:
Calclavia 2014-03-14 22:59:12 +08:00
parent 1c87ee9858
commit 46211efae1

View file

@ -58,7 +58,7 @@ public class TileWaterTurbine extends TileMechanicalTurbine
if (getMultiBlock().isConstructed())
torque = (long) (defaultTorque / (1d / multiBlockRadius));
else
torque = defaultTorque / 22;
torque = defaultTorque / 12;
/**
* If this is a horizontal turbine.
@ -89,7 +89,7 @@ public class TileWaterTurbine extends TileMechanicalTurbine
}
else
{
maxPower = 2000;
maxPower = 2500;
int checkX = xCoord;
int checkY = yCoord - 1;