Skip to content

Commit e951991

Browse files
authored
Merge pull request #31 from repo-alt/rv3-1.7.10
Returned p2p default power loss to 5%.
2 parents d4b7cd5 + dfb9a6b commit e951991

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
aeversion=rv3
22
aechannel=beta
3-
aebuild=35
3+
aebuild=37
44
#KEEP V6 FOR MOD SUPPORT
55
aegroup=appeng
66
aebasename=appliedenergistics2

src/main/java/appeng/core/AEConfig.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public AEConfig( final File configFile )
114114
PowerUnits.WA.conversionRatio = this.get( "PowerRatios", "RotaryCraft", DEFAULT_RTC_EXCHANGE ).getDouble( DEFAULT_RTC_EXCHANGE );
115115
final double DEFAULT_RF_EXCHANGE = 0.5;
116116
PowerUnits.RF.conversionRatio = this.get( "PowerRatios", "ThermalExpansion", DEFAULT_RF_EXCHANGE ).getDouble( DEFAULT_RF_EXCHANGE );
117-
final double DEFAULT_TUNNEL_POWER_LOSS = 0.15;
117+
final double DEFAULT_TUNNEL_POWER_LOSS = 0.05;
118118
TUNNEL_POWER_LOSS = this.get("PowerRatios", "TunnelPowerLoss", DEFAULT_TUNNEL_POWER_LOSS).getDouble(DEFAULT_TUNNEL_POWER_LOSS);
119119
if (TUNNEL_POWER_LOSS < 0 || TUNNEL_POWER_LOSS >= 1)
120120
TUNNEL_POWER_LOSS = DEFAULT_TUNNEL_POWER_LOSS;

0 commit comments

Comments
 (0)