mirror of
https://github.com/YouHaveTrouble/Enchantio.git
synced 2026-05-12 06:06:55 +00:00
playing around with enchants
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
package me.youhavetrouble.enchantio;
|
||||
|
||||
|
||||
import me.youhavetrouble.enchantio.listeners.SoulboundListener;
|
||||
import org.bukkit.plugin.java.JavaPlugin;
|
||||
|
||||
public final class Enchantio extends JavaPlugin {
|
||||
|
||||
@Override
|
||||
public void onEnable() {
|
||||
getServer().getPluginManager().registerEvents(new SoulboundListener(), this);
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDisable() {
|
||||
// Plugin shutdown logic
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user