mirror of
https://github.com/plexusorg/Plex.git
synced 2024-11-17 00:56:12 +00:00
53 lines
945 B
Java
53 lines
945 B
Java
package dev.plex.config;
|
|
|
|
import dev.plex.Plex;
|
|
import java.io.File;
|
|
import org.bukkit.configuration.file.YamlConfiguration;
|
|
|
|
public class Config extends YamlConfiguration
|
|
{
|
|
private Plex plugin;
|
|
private File file;
|
|
private String name;
|
|
|
|
public Config(Plex plugin, String name)
|
|
{
|
|
this.plugin = plugin;
|
|
this.file = new File(plugin.getDataFolder(), name);
|
|
this.name = name;
|
|
|
|
if (!file.exists())
|
|
{
|
|
saveDefault();
|
|
}
|
|
}
|
|
|
|
public void load()
|
|
{
|
|
try
|
|
{
|
|
super.load(file);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
ex.printStackTrace();
|
|
}
|
|
}
|
|
|
|
public void save()
|
|
{
|
|
try
|
|
{
|
|
super.save(file);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
ex.printStackTrace();
|
|
}
|
|
}
|
|
|
|
private void saveDefault()
|
|
{
|
|
plugin.saveResource(name, false);
|
|
}
|
|
} |