diff --git a/src/main/java/com/sosnitzka/taiga/TAIGAConfiguration.java b/src/main/java/com/sosnitzka/taiga/TAIGAConfiguration.java index 9e7936b..4c1c630 100644 --- a/src/main/java/com/sosnitzka/taiga/TAIGAConfiguration.java +++ b/src/main/java/com/sosnitzka/taiga/TAIGAConfiguration.java @@ -46,8 +46,6 @@ public class TAIGAConfiguration { public static double ligniteFactor; - - public static boolean slagIronGen; public static boolean slagGoldGen; public static boolean ironGen; @@ -107,18 +105,18 @@ public class TAIGAConfiguration { ironSwitch.setLanguageKey("gui.taiga_configuration.gen_iron"); Property oreFactorGeneralProp = config.get(CATEGORY_NAME_GENERAL, "Ore factor", RESFAC_DEFAULT_VALUE, - "General multiplier for all ores at once", RESFAC_MIN_VALUE, RESFAC_MAX_VALUE); + "General multiplier for all TAIGA ores at once", RESFAC_MIN_VALUE, RESFAC_MAX_VALUE); oreFactorGeneralProp.setLanguageKey("gui.taiga_configuration.ore_multiplier"); Property durabilityFactorGeneralProp = config.get(CATEGORY_NAME_GENERAL, "Durability factor", RESFAC_DEFAULT_VALUE, - "General multiplier for all materials", RESFAC_MIN_VALUE, RESFAC_MAX_VALUE); + "General multiplier for all TAIGA materials", RESFAC_MIN_VALUE, RESFAC_MAX_VALUE); durabilityFactorGeneralProp.setLanguageKey("gui.taiga_configuration.durability_multiplier"); durabilityFactorGeneralProp.setRequiresMcRestart(true); Property speedFactorGeneralProp = config.get(CATEGORY_NAME_GENERAL, "Speed factor", RESFAC_DEFAULT_VALUE, - "General multiplier for all materials", RESFAC_MIN_VALUE, RESFAC_MAX_VALUE); + "General multiplier for all TAIGA materials", RESFAC_MIN_VALUE, RESFAC_MAX_VALUE); speedFactorGeneralProp.setLanguageKey("gui.taiga_configuration.speed_multiplier"); speedFactorGeneralProp.setRequiresMcRestart(true); Property attackFactorGeneralProp = config.get(CATEGORY_NAME_GENERAL, "Attack factor", RESFAC_DEFAULT_VALUE, - "General multiplier for all materials", RESFAC_MIN_VALUE, RESFAC_MAX_VALUE); + "General multiplier for all TAIGA materials", RESFAC_MIN_VALUE, RESFAC_MAX_VALUE); attackFactorGeneralProp.setLanguageKey("gui.taiga_configuration.attack_multiplier"); attackFactorGeneralProp.setRequiresMcRestart(true); diff --git a/src/main/java/com/sosnitzka/taiga/TAIGAGuiFactory.java b/src/main/java/com/sosnitzka/taiga/TAIGAGuiFactory.java index 58bdc01..d75d1bc 100644 --- a/src/main/java/com/sosnitzka/taiga/TAIGAGuiFactory.java +++ b/src/main/java/com/sosnitzka/taiga/TAIGAGuiFactory.java @@ -45,7 +45,7 @@ public class TAIGAGuiFactory implements IModGuiFactory { List list = new ArrayList(); list.add(new DummyConfigElement.DummyCategoryElement("Basics configuration", "gui.taiga_configuration.ctgy.general", CategoryEntryGeneral.class)); list.add(new DummyConfigElement.DummyCategoryElement("Specific ore generation", "gui.taiga_configuration.ctgy.oregen", CategoryEntryOreGen.class)); - list.add(new DummyConfigElement.DummyCategoryElement("Specific ore values", "gui.taiga_configuration.ctgy.oreval", CategoryEntryOreVal.class)); + //list.add(new DummyConfigElement.DummyCategoryElement("Specific ore values", "gui.taiga_configuration.ctgy.oreval", CategoryEntryOreVal.class)); return list; }