Skip to content

Commit

Permalink
Merge pull request #31 from repo-alt/rv3-1.7.10
Browse files Browse the repository at this point in the history
Returned p2p default power loss to 5%.
  • Loading branch information
repo-alt authored Dec 25, 2020
2 parents d4b7cd5 + dfb9a6b commit e951991
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
aeversion=rv3
aechannel=beta
aebuild=35
aebuild=37
#KEEP V6 FOR MOD SUPPORT
aegroup=appeng
aebasename=appliedenergistics2
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/appeng/core/AEConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public AEConfig( final File configFile )
PowerUnits.WA.conversionRatio = this.get( "PowerRatios", "RotaryCraft", DEFAULT_RTC_EXCHANGE ).getDouble( DEFAULT_RTC_EXCHANGE );
final double DEFAULT_RF_EXCHANGE = 0.5;
PowerUnits.RF.conversionRatio = this.get( "PowerRatios", "ThermalExpansion", DEFAULT_RF_EXCHANGE ).getDouble( DEFAULT_RF_EXCHANGE );
final double DEFAULT_TUNNEL_POWER_LOSS = 0.15;
final double DEFAULT_TUNNEL_POWER_LOSS = 0.05;
TUNNEL_POWER_LOSS = this.get("PowerRatios", "TunnelPowerLoss", DEFAULT_TUNNEL_POWER_LOSS).getDouble(DEFAULT_TUNNEL_POWER_LOSS);
if (TUNNEL_POWER_LOSS < 0 || TUNNEL_POWER_LOSS >= 1)
TUNNEL_POWER_LOSS = DEFAULT_TUNNEL_POWER_LOSS;
Expand Down

0 comments on commit e951991

Please sign in to comment.