Alpha 1.0.0 RC01

Pretty sure this is done.
Fully configurable.
Simple.
Lightweight.
Effective.
Up to date.
This commit is contained in:
Paldiu
2022-05-09 22:40:35 -05:00
parent 8b69f92762
commit 724222553f
8 changed files with 131 additions and 96 deletions

View File

@ -11,12 +11,18 @@ public final class ToolAssist extends JavaPlugin {
@Override
public void onEnable() {
// Plugin startup logic
getLogger().info("Initializing configuration...");
this.config = new Config(this);
getLogger().info("Initialization complete! Registering listener...");
new MineListener(this);
getLogger().info("Initialization complete!");
}
@Override
public void onDisable() {
// Plugin shutdown logic
this.config.osave();
this.config = null;
getLogger().info("Goodbye!");
}
@Override