From 29c42d4b03958de116d6337e677e395e08f65984 Mon Sep 17 00:00:00 2001 From: Technus Date: Thu, 10 Aug 2017 12:47:53 +0200 Subject: Change default value of fusion nerf. --- .../java/com/github/technus/tectech/auxiliary/TecTechConfig.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main/java/com') 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, -- cgit