Remove pointless things, i will rewrite config later
This commit is contained in:
parent
bc9a4bca41
commit
fd5776dd15
@ -36,8 +36,6 @@ public class Chairs extends JavaPlugin {
|
||||
public int sitHealthPerInterval;
|
||||
public int sitEffectInterval;
|
||||
public HashSet<String> disabledRegions = new HashSet<String>();
|
||||
private File pluginFolder;
|
||||
private File configFile;
|
||||
private Logger log;
|
||||
public PluginManager pm;
|
||||
public ChairsIgnoreList ignoreList;
|
||||
@ -51,8 +49,6 @@ public class Chairs extends JavaPlugin {
|
||||
ignoreList.load();
|
||||
pm = this.getServer().getPluginManager();
|
||||
pluginFolder = getDataFolder();
|
||||
configFile = new File(pluginFolder, "config.yml");
|
||||
createConfig();
|
||||
getConfig().options().copyDefaults(true);
|
||||
saveConfig();
|
||||
loadConfig();
|
||||
@ -89,24 +85,6 @@ public class Chairs extends JavaPlugin {
|
||||
}
|
||||
}
|
||||
|
||||
private void createConfig() {
|
||||
if (!pluginFolder.exists()) {
|
||||
try {
|
||||
pluginFolder.mkdir();
|
||||
} catch (Exception e) {
|
||||
logInfo("ERROR: " + e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
if (!configFile.exists()) {
|
||||
try {
|
||||
configFile.createNewFile();
|
||||
} catch (Exception e) {
|
||||
logInfo("ERROR: " + e.getMessage());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
protected HashMap<String, Entity> sit = new HashMap<String, Entity>();
|
||||
protected HashMap<Block, String> sitblock = new HashMap<Block, String>();
|
||||
protected HashMap<String, Block> sitblockbr = new HashMap<String, Block>();
|
||||
|
Loading…
Reference in New Issue
Block a user