Lowered Spatial Energy Requirements and Lowered required pylon count for max efficiency.
This commit is contained in:
parent
40864f51d6
commit
66d1054701
2 changed files with 6 additions and 5 deletions
|
@ -91,8 +91,8 @@ public class AEConfig extends Configuration implements IConfigureableObject, ICo
|
||||||
return prop;
|
return prop;
|
||||||
}
|
}
|
||||||
|
|
||||||
public double spatialPowerScaler = 1.5;
|
public double spatialPowerScaler = 1.35;
|
||||||
public double spatialPowerMultiplier = 1500.0;
|
public double spatialPowerMultiplier = 1250.0;
|
||||||
|
|
||||||
public String grinderOres[] = {
|
public String grinderOres[] = {
|
||||||
// Vanilla Items
|
// Vanilla Items
|
||||||
|
|
7
me/cache/SpatialPylonCache.java
vendored
7
me/cache/SpatialPylonCache.java
vendored
|
@ -157,14 +157,15 @@ public class SpatialPylonCache implements IGridCache, ISpatialCache
|
||||||
reqX = captureMax.x - captureMin.x;
|
reqX = captureMax.x - captureMin.x;
|
||||||
reqY = captureMax.y - captureMin.y;
|
reqY = captureMax.y - captureMin.y;
|
||||||
reqZ = captureMax.z - captureMin.z;
|
reqZ = captureMax.z - captureMin.z;
|
||||||
requirePylongBlocks = ((reqX * reqZ + reqX * reqY + reqY * reqZ) * 3) / 5;
|
requirePylongBlocks = Math.max( 6, ((reqX * reqZ + reqX * reqY + reqY * reqZ) * 3) / 8 );
|
||||||
|
|
||||||
effiency = (double) pylonBlocks / (double) requirePylongBlocks;
|
effiency = (double) pylonBlocks / (double) requirePylongBlocks;
|
||||||
|
|
||||||
if ( effiency > 1.0 )
|
if ( effiency > 1.0 )
|
||||||
effiency = 1.0;
|
effiency = 1.0;
|
||||||
if ( effiency < 0.0 )
|
if ( effiency < 0.0 )
|
||||||
effiency = 0.0;
|
effiency = 0.0;
|
||||||
|
|
||||||
minPower = (double) reqX * (double) reqY * reqZ * AEConfig.instance.spatialPowerMultiplier;
|
minPower = (double) reqX * (double) reqY * reqZ * AEConfig.instance.spatialPowerMultiplier;
|
||||||
maxPower = Math.pow( minPower, AEConfig.instance.spatialPowerScaler );
|
maxPower = Math.pow( minPower, AEConfig.instance.spatialPowerScaler );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue