mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-16 21:13:11 +01:00
42 lines
No EOL
1.2 KiB
Java
42 lines
No EOL
1.2 KiB
Java
/*
|
|
* This file ("ConfigurationHandler.java") is part of the Actually Additions mod for Minecraft.
|
|
* It is created and owned by Ellpeck and distributed
|
|
* under the Actually Additions License to be found at
|
|
* http://ellpeck.de/actaddlicense
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
*
|
|
* © 2015-2017 Ellpeck
|
|
*/
|
|
|
|
package de.ellpeck.actuallyadditions.mod.config;
|
|
|
|
public class ConfigurationHandler {
|
|
//
|
|
// public static Configuration config;
|
|
//
|
|
// public ConfigurationHandler(File configFile) {
|
|
// ActuallyAdditions.LOGGER.info("Grabbing Configurations...");
|
|
//
|
|
// MinecraftForge.EVENT_BUS.register(this);
|
|
//
|
|
// config = new Configuration(configFile);
|
|
// config.load();
|
|
//
|
|
// redefineConfigs();
|
|
// }
|
|
//
|
|
// public static void redefineConfigs() {
|
|
// ConfigValues.defineConfigValues(config);
|
|
//
|
|
// if (config.hasChanged()) {
|
|
// config.save();
|
|
// }
|
|
// }
|
|
//
|
|
// @SubscribeEvent
|
|
// public void onConfigurationChangedEvent(ConfigChangedEvent.OnConfigChangedEvent event) {
|
|
// if (event.getModID().equalsIgnoreCase(ActuallyAdditions.MODID)) {
|
|
// redefineConfigs();
|
|
// }
|
|
// }
|
|
} |