diff options
author | Namikon <namikon@gmx.net> | 2015-10-29 14:13:38 +0100 |
---|---|---|
committer | Namikon <namikon@gmx.net> | 2015-10-29 14:13:38 +0100 |
commit | 8f86be389bb7b1f9a9d17c0d009602834ff1d93a (patch) | |
tree | 842ffd2c10e36619f4b82fbe3183c8007c80764c /src/main/java/bloodasp/galacticgreg/auxiliary/GalacticGregConfig.java | |
parent | 7a021c55d0e44e6f3dc46acf0040ead2df7a3846 (diff) | |
download | GT5-Unofficial-8f86be389bb7b1f9a9d17c0d009602834ff1d93a.tar.gz GT5-Unofficial-8f86be389bb7b1f9a9d17c0d009602834ff1d93a.tar.bz2 GT5-Unofficial-8f86be389bb7b1f9a9d17c0d009602834ff1d93a.zip |
Removed SpaceDim registration. This is supposed to be done by an external mod.
Also removed the warning about misconfiguration, as this mod alone won't do anything by itself now
Diffstat (limited to 'src/main/java/bloodasp/galacticgreg/auxiliary/GalacticGregConfig.java')
-rw-r--r-- | src/main/java/bloodasp/galacticgreg/auxiliary/GalacticGregConfig.java | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/main/java/bloodasp/galacticgreg/auxiliary/GalacticGregConfig.java b/src/main/java/bloodasp/galacticgreg/auxiliary/GalacticGregConfig.java index f640f61193..54d20f395f 100644 --- a/src/main/java/bloodasp/galacticgreg/auxiliary/GalacticGregConfig.java +++ b/src/main/java/bloodasp/galacticgreg/auxiliary/GalacticGregConfig.java @@ -21,14 +21,9 @@ public class GalacticGregConfig extends ConfigManager { public boolean PrintDebugMessagesToFMLLog; public boolean PrintTraceMessagesToFMLLog; - public boolean RegisterVanillaDim; - public boolean RegisterGalacticCraftCore; - public boolean RegisterGalacticCraftPlanets; - public boolean RegisterGalaxySpace; public boolean LootChestsEnabled; public boolean EnableAEExportCommand; public boolean SchematicsEnabled; - public boolean ProperConfigured; public String LootChestItemOverride; public boolean QuietMode; @@ -43,16 +38,10 @@ public class GalacticGregConfig extends ConfigManager { LootChestsEnabled = true; - RegisterVanillaDim = true; - RegisterGalacticCraftCore = true; - RegisterGalacticCraftPlanets = true; - RegisterGalaxySpace = true; - // Default false, as it is WiP EnableAEExportCommand = false; SchematicsEnabled = false; - ProperConfigured = false; LootChestItemOverride = ""; QuietMode = false; } @@ -65,15 +54,9 @@ public class GalacticGregConfig extends ConfigManager { PrintTraceMessagesToFMLLog = _mainConfig.getBoolean("PrintTraceMessagesToFMLLog", "Debug", PrintTraceMessagesToFMLLog, "Enable trace output. Warning: This will produce gazillions of log entries"); QuietMode = _mainConfig.getBoolean("QuietMode", "Debug", QuietMode, "In quiet-mode only errors, warnings and fatals will be printed to the logfile/console"); - RegisterVanillaDim = _mainConfig.getBoolean("RegisterVanillaDim", "BuildInMods", RegisterVanillaDim, "Enable to register the build-in dimension definition for TheEnd - Asteroids"); - RegisterGalacticCraftCore = _mainConfig.getBoolean("RegisterGalacticCraftCore", "BuildInMods", RegisterGalacticCraftCore, "Enable to register the build-in dimension definition for GalacticCraft Core (The moon)"); - RegisterGalacticCraftPlanets = _mainConfig.getBoolean("RegisterGalacticCraftPlanets", "BuildInMods", RegisterGalacticCraftPlanets, "Enable to register the build-in dimension definition for GalacticCraft Planets (Mars, asteroids)"); - RegisterGalaxySpace = _mainConfig.getBoolean("RegisterGalaxySpace", "BuildInMods", RegisterGalaxySpace, "Enable to register the build-in dimension definition for GalaxySpace by BlesseNtumble"); - LootChestsEnabled = _mainConfig.getBoolean("LootChestsEnabled", "Extras", LootChestsEnabled, "Enables/disables the dungeon-chest generator system for asteroids. New config values will be generated if set to true"); EnableAEExportCommand = _mainConfig.getBoolean("EnableAEExportCommand", "Extras", EnableAEExportCommand, "If set to true, you can export any structure stored on a AE2 spatial storage disk. (Can't be spawned yet, WiP). Requires SchematicsEnabled to be true"); SchematicsEnabled = _mainConfig.getBoolean("SchematicsEnabled", "Extras", SchematicsEnabled, "Enable the experimental Schematics-handler to spawn exported schematics in dimensions. This is WiP, use at own risk"); - ProperConfigured = _mainConfig.getBoolean("IHaveConfiguredEverything", "main", ProperConfigured, "Set this to true to confirm that you've read the warnings about the massive change in WorldConfig.cfg and you backed-up / configured everything properly"); LootChestItemOverride = _mainConfig.getString("CustomLootChest", "Extras", LootChestItemOverride, "Define the chest you wish to use as LootChest. use the <ModID>:<Name>:<meta> format or leave empty for the default Minecraft Chest"); GalacticGreg.Logger.setDebugOutput(PrintDebugMessagesToFMLLog); |