mirror of
https://github.com/SimplexDevelopment/ToolAssist.git
synced 2025-07-04 03:16:41 +00:00
Alpha 1.0.0 RC01
Pretty sure this is done. Fully configurable. Simple. Lightweight. Effective. Up to date.
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user