fix mod name

implement GTCEU Energy adapter
This commit is contained in:
PrototypeTrousers
2022-01-20 20:02:26 -03:00
parent 0d096944cc
commit df28a5520f
5 changed files with 112 additions and 5 deletions
@@ -57,10 +57,16 @@ public class TileEnergyAcceptor extends AENetworkPowerTile
}
catch( final GridAccessException e )
{
return this.getInternalMaxPower();
return 0;
}
}
@Override
public double getInternalMaxPower()
{
return getFunnelPowerDemand( Long.MAX_VALUE );
}
@Override
protected double funnelPowerIntoStorage( final double power, final Actionable mode )
{