Advertisement
notjacob

template

Dec 11th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.64 KB | None | 0 0
  1. package commands;
  2.  
  3. import org.bukkit.command.Command;
  4. import org.bukkit.command.CommandExecutor;
  5. import org.bukkit.command.CommandSender;
  6.  
  7. import main.COREMAIN;
  8.  
  9. public class unmute implements CommandExecutor{
  10.      private COREMAIN plugin;
  11.         public unmute(COREMAIN plugin) {
  12.             setPlugin(plugin);
  13.             plugin.getCommand("unmute").setExecutor(this);
  14.         }
  15.         public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
  16.         return true;
  17.         }      
  18.         public COREMAIN getPlugin() { return this.plugin; }
  19.         public void setPlugin(COREMAIN plugin) { this.plugin = plugin; }
  20. }
  21. //new unmute(this);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement