Guest User

Untitled

a guest
Apr 16th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.57 KB | None | 0 0
  1. package me.iidunno.plugins.skyrimstones;
  2.  
  3. import org.bukkit.command.CommandExecutor;
  4. import org.bukkit.plugin.java.JavaPlugin;
  5.  
  6. public class SkyrimStones extends JavaPlugin {
  7.     private CommandExecutor myExecutor;
  8.    
  9.     public void onDisable() {
  10.         // TODO: Place any custom disable code here.
  11.         System.out.println(this + " is now disabled!");
  12.     }
  13.  
  14.     public void onEnable() {
  15.         System.out.println(this + " is now enabled!");
  16.         myExecutor = new SkyrimStonesCommandExecutor(this);
  17.         getCommand("gs").setExecutor(myExecutor);
  18.     }
  19. }
Add Comment
Please, Sign In to add comment