Decreased water turbine torque

This commit is contained in:
Calclavia 2014-03-14 22:54:26 +08:00
parent 4ed2a4b424
commit 1c87ee9858

View file

@ -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;