Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. package de.kally.main;
  2.  
  3. import org.bukkit.plugin.Plugin;
  4. import org.bukkit.plugin.java.JavaPlugin;
  5.  
  6. import de.kally.commands.Gemsshop;
  7. import net.madgamble.core.api.bukkit.BukkitCore;
  8.  
  9. public class Main extends JavaPlugin{
  10.  
  11.  
  12.  
  13.  
  14. public void onEnable() {
  15.  
  16. BukkitCore.getApi().getCommandManager().registerCommand("gemss", new Gemsshop());
  17.  
  18. }
  19.  
  20. public void onDisable() {
  21.  
  22. }
  23.  
  24.  
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement