mirror of
https://github.com/plexusorg/Plex.git
synced 2025-07-01 07:36:42 +00:00
weiphihpfwoeghjipwseg
This commit is contained in:
@ -1,51 +0,0 @@
|
||||
package me.totalfreedom.plex.command;
|
||||
|
||||
import java.io.File;
|
||||
import me.totalfreedom.plex.Plex;
|
||||
import org.bukkit.configuration.file.YamlConfiguration;
|
||||
|
||||
public class MainConfig extends YamlConfiguration
|
||||
{
|
||||
private Plex plugin;
|
||||
private File file;
|
||||
|
||||
public MainConfig(Plex plugin)
|
||||
{
|
||||
this.plugin = plugin;
|
||||
this.file = new File(plugin.getDataFolder(), "config.yml");
|
||||
|
||||
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("config.yml", false);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user