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;
|
||||
}
|
||||
|
||||
public double spatialPowerScaler = 1.5;
|
||||
public double spatialPowerMultiplier = 1500.0;
|
||||
public double spatialPowerScaler = 1.35;
|
||||
public double spatialPowerMultiplier = 1250.0;
|
||||
|
||||
public String grinderOres[] = {
|
||||
// Vanilla Items
|
||||
|
|
3
me/cache/SpatialPylonCache.java
vendored
3
me/cache/SpatialPylonCache.java
vendored
|
@ -157,9 +157,10 @@ public class SpatialPylonCache implements IGridCache, ISpatialCache
|
|||
reqX = captureMax.x - captureMin.x;
|
||||
reqY = captureMax.y - captureMin.y;
|
||||
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;
|
||||
|
||||
if ( effiency > 1.0 )
|
||||
effiency = 1.0;
|
||||
if ( effiency < 0.0 )
|
||||
|
|
Loading…
Add table
Reference in a new issue