package me.theeyeofthepotato.varm;
import org.bukkit.plugin.java.JavaPlugin;
import me.theeyeofthepotato.varm.parser.Varm;
import me.theeyeofthepotato.varm.parser.VarmTab;
public class Main extends JavaPlugin {
@Override
public void onEnable() {
new Varm(this);
this.getCommand("varm").setTabCompleter(new VarmTab());
this.saveDefaultConfig();
}
@Override
public void onDisable() {
}
}
according to the spigot docs, this code should generate a new config.yml file in the plugin's data folder. It does not create the data folder nor does it create the config.yml file. Any reason that you guys can see? Thanks in advance!