summaryrefslogtreecommitdiff
path: root/src/main/java/net/benjidial/nswp/commands/TeleportToWaypoint.java
blob: 71b2ad330f804606a1db96165940ee0a37b4ac34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package net.benjidial.nswp.commands;

import net.benjidial.nswp.Database;
import net.benjidial.nswp.Waypoint;

import org.bukkit.entity.Player;

import java.sql.SQLException;
import java.util.List;

public class TeleportToWaypoint extends PlayerCommand {

  public List<String> getTabCompletions(Player sender, String[] args) throws SQLException {
    return searchWaypointsByArg(sender, args, 0);
  }

  public boolean doCommand(Player sender, String[] args) throws SQLException {

    if (args.length != 1)
      return false;

    Database.createWaypointTable(sender);

    Waypoint wp = Database.lookupWaypoint(sender, args[0]);
    if (wp == null) {
      sender.sendMessage("You do not have a waypoint " + args[0] + ".");
      return true;
    }

    Database.setWBack(sender, sender.getLocation());
    sender.teleport(wp.location);
    return true;

  }

}