Advertisement
Guest User

Untitled

a guest
Apr 1st, 2020
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. public class Plot extends SubCommand {
  2.  
  3. public Plot() {
  4. super("buys a plot", "", new String[]{"plot"});
  5. }
  6.  
  7. @Override
  8. public void onCommand(CommandSender sender, String[] args) {
  9. if (sender instanceof Player) {
  10. }
  11. }
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement