* @param the
* point we are currently at
* @return the point we should be teleported to
*/
public static Point getObjectTelePoint(Point location, String command) {
TelePoint point = objectTelePoints.get(location);
if (point == null) {
return null;
}
if (command == null || point.getCommand().equalsIgnoreCase(command)) {
return point;
}
return null;
}