diff options
author | Technus <daniel112092@gmail.com> | 2017-08-10 12:47:53 +0200 |
---|---|---|
committer | Technus <daniel112092@gmail.com> | 2017-08-10 12:47:53 +0200 |
commit | 29c42d4b03958de116d6337e677e395e08f65984 (patch) | |
tree | 1e9e611f49bf685126988d40e409c97208b7761c | |
parent | a90db1f54fe4f0be35f8a2f6698dfd0dd4010b12 (diff) | |
download | GT5-Unofficial-29c42d4b03958de116d6337e677e395e08f65984.tar.gz GT5-Unofficial-29c42d4b03958de116d6337e677e395e08f65984.tar.bz2 GT5-Unofficial-29c42d4b03958de116d6337e677e395e08f65984.zip |
Change default value of fusion nerf.
-rw-r--r-- | src/main/java/com/github/technus/tectech/auxiliary/TecTechConfig.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/com/github/technus/tectech/auxiliary/TecTechConfig.java b/src/main/java/com/github/technus/tectech/auxiliary/TecTechConfig.java index 59b3e2e0fe..9344ec286b 100644 --- a/src/main/java/com/github/technus/tectech/auxiliary/TecTechConfig.java +++ b/src/main/java/com/github/technus/tectech/auxiliary/TecTechConfig.java @@ -24,7 +24,7 @@ public class TecTechConfig extends ConfigManager { ModAdminErrorLogs_Enabled = false; //DEBUG_MODE = false; BOOM_ENABLE = true; - NERF_FUSION = true; + NERF_FUSION = false; ENABLE_TURRET_EXPLOSIONS = true; TURRET_DAMAGE_FACTOR=10; TURRET_EXPLOSION_FACTOR=1; @@ -37,9 +37,9 @@ public class TecTechConfig extends ConfigManager { //DEBUG_MODE = _mainConfig.getBoolean("DebugPrint", "Debug", DEBUG_MODE, // "Enables logging"); BOOM_ENABLE = _mainConfig.getBoolean("BoomEnable", "Features", BOOM_ENABLE, - "Set to false to disable explosions on everything bad that you can do (this will not be available after release)"); + "Set to false to disable explosions on everything bad that you can do"); NERF_FUSION = _mainConfig.getBoolean("NerfFusion", "Features", NERF_FUSION, - "Set to false to disable nerfing of plasmas heavier than Fe"); + "Set to true to enable removal of plasmas heavier than Fe"); ENABLE_TURRET_EXPLOSIONS = _mainConfig.getBoolean("TurretBoomEnable", "Features", ENABLE_TURRET_EXPLOSIONS, "Set to false to disable explosions caused by EM turrets"); TURRET_DAMAGE_FACTOR = _mainConfig.getFloat("TurretDamageFactor", "Features", TURRET_DAMAGE_FACTOR, 0, Short.MAX_VALUE, |