Buff wind and water turbines by x100 to compete with other power sources

This commit is contained in:
Robert S 2014-04-10 01:46:08 -04:00
parent 594be4e062
commit 5598571f42

View file

@ -117,7 +117,7 @@ public class TileMechanicalTurbine extends TileTurbineBase implements INodeProvi
if (mechanicalNode.angularVelocity < 0)
angularVelocity = -Math.abs(angularVelocity);
mechanicalNode.apply((torque - mechanicalNode.getTorque()) / 10, (angularVelocity - mechanicalNode.getAngularVelocity()) / 10);
mechanicalNode.apply((torque - mechanicalNode.getTorque()) * 10, (angularVelocity - mechanicalNode.getAngularVelocity()) * 10);
}
}