teleport(new Position(coordinate));
}
public void teleport(Position position) throws ConnectException, IOException {
if (position.dimension() == getDimension()) {
server.bots.connect(new Teleporter(this, position));
} else {
addTMessage(Color.RED, "You're not in the same dimension as the specified warppoint.");
}
}