RtC sink now longer spams with zero power.

This commit is contained in:
AlgorithmX2 2014-01-24 10:34:03 -06:00
parent c2f27378d0
commit a3bf4d8e61

View file

@ -29,7 +29,8 @@ public abstract class RotaryCraft extends IC2 implements ShaftPowerReceiver
@Override
public void Tick()
{
injectExternalPower( PowerUnits.WA, power );
if ( power > 0 )
injectExternalPower( PowerUnits.WA, power );
}
};