FitzyPvP

Untitled

Mar 28th, 2020
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. package me.fitzypvp.essentialsb;
  2.  
  3. import me.fitzypvp.essentialsb.Commands.ban;
  4. import me.fitzypvp.essentialsb.Commands.fly;
  5. import me.fitzypvp.essentialsb.Commands.kill;
  6. import org.bukkit.plugin.java.JavaPlugin;
  7.  
  8. public final class EssentialsB extends JavaPlugin {
  9.  
  10. @Override
  11. public void onEnable() {
  12. // Plugin startup logic
  13. getCommand("kill").setExecutor(new kill());
  14. getCommand("ban").setExecutor(new ban());
  15. getCommand("fly").setExecutor(new fly());
  16.  
  17. }
  18. }
Add Comment
Please, Sign In to add comment