increase AE energy polling rate from once every 90 to once every 3 ticks

This commit is contained in:
Salomão
2021-06-18 12:48:01 -03:00
parent 56f57e18a5
commit 307f86ded8
+1 -1
View File
@@ -505,7 +505,7 @@ public class EnergyGridCache implements IEnergyGrid
@Override
public double getStoredPower()
{
if( this.availableTicksSinceUpdate > 90 )
if( this.availableTicksSinceUpdate > 2 )
{
this.refreshPower();
}