Increase network energy buffer to 800 AE

This commit is contained in:
yueh
2020-06-14 14:25:30 +02:00
parent 048c2d0b46
commit 3cb9695026
+2 -1
View File
@@ -63,7 +63,8 @@ import appeng.me.energy.EnergyWatcher;
public class EnergyGridCache implements IEnergyGrid
{
private static final double MAX_BUFFER_STORAGE = 200;
private static final double MAX_BUFFER_STORAGE = 800;
private static final Comparator<IEnergyGridProvider> COMPARATOR_HIGHEST_AMOUNT_STORED_FIRST = ( o1, o2 ) -> Double.compare( o2.getProviderStoredEnergy(),
o1.getProviderStoredEnergy() );