Config for ignoring Compression mod's compress recipes

Over 3200 recipes with *just* vanilla + BM is... bad. Nobody should be adding that many...
This commit is contained in:
Nicholas Ignoffo 2016-04-24 08:30:59 -07:00
parent b9557bf5ae
commit ba17fe126e
4 changed files with 46 additions and 0 deletions

View file

@ -139,6 +139,7 @@ public class ConfigHandler
// Compat
public static int wailaAltarDisplayMode;
public static boolean thaumcraftGogglesUpgrade;
public static boolean ignoreCompressionSpamAddedByCompression;
public static void init(File file)
{
@ -285,6 +286,7 @@ public class ConfigHandler
config.addCustomCategoryComment(category, "Compatibility settings");
wailaAltarDisplayMode = config.getInt("wailaAltarDisplayMode", category + ".waila", 1, 0, 2, "The mode for the Waila display on Blood Altars.\n0 - Always display information\n1 - Only display when Divination/Seer sigil is in hand.\n2 - Only display when Divination/Seer sigil is in inventory");
thaumcraftGogglesUpgrade = config.getBoolean("thaumcraftGogglesUpgrade", category + ".thaumcraft", true, "Allows the Living Helmet to be upgraded with Goggles of Revealing in an Anvil.");
ignoreCompressionSpamAddedByCompression = config.getBoolean("ignoreCompressionSpamAddedByCompression", category + ".compression", true, "Compression decided to add a storage recipe for every item and block in the game. This will make the Sigil of Compression ignore those recipes so your game will actually load in a decent amount of time.");
config.save();
}