Fix a little derp in getPower()

This commit is contained in:
Ben Spiers 2013-07-28 20:49:11 +01:00
parent 6a562117b6
commit 735b281341

View file

@ -358,6 +358,6 @@ public class EnergyNetwork
public double getPower()
{
return joulesTransmitted * 20;
return joulesLastTick * 20;
}
}