mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-01 05:57:09 +00:00
64 lines
1.2 KiB
Java
64 lines
1.2 KiB
Java
|
package me.totalfreedom.totalfreedommod.config;
|
||
|
|
||
|
import java.io.File;
|
||
|
import me.totalfreedom.totalfreedommod.TotalFreedomMod;
|
||
|
import org.bukkit.configuration.file.YamlConfiguration;
|
||
|
|
||
|
public class YamlConfig extends YamlConfiguration
|
||
|
{
|
||
|
private final File file;
|
||
|
|
||
|
public YamlConfig(TotalFreedomMod plugin, String name, boolean copyDefaults)
|
||
|
{
|
||
|
this.file = new File(plugin.getDataFolder(), name);
|
||
|
|
||
|
if (copyDefaults)
|
||
|
{
|
||
|
options().copyDefaults(true);
|
||
|
}
|
||
|
|
||
|
if (!file.exists())
|
||
|
{
|
||
|
plugin.saveResource(name, false);
|
||
|
}
|
||
|
load();
|
||
|
}
|
||
|
|
||
|
public YamlConfig(TotalFreedomMod plugin, String name)
|
||
|
{
|
||
|
this(plugin, name, true);
|
||
|
}
|
||
|
|
||
|
public void load()
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
super.load(file);
|
||
|
}
|
||
|
catch (Exception e)
|
||
|
{
|
||
|
e.printStackTrace();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public void save()
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
super.save(file);
|
||
|
}
|
||
|
catch (Exception e)
|
||
|
{
|
||
|
e.printStackTrace();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public void clear()
|
||
|
{
|
||
|
for (String key : super.getKeys(false))
|
||
|
{
|
||
|
super.set(key, null);
|
||
|
}
|
||
|
}
|
||
|
}
|