@SuppressWarnings("rawtypes")
Entry<?, ?> e = (Entry) o;
if (e.getKey() instanceof String) {
try {
String world = (String) e.getKey();
ConfigurationNode waypoints = (ConfigurationNode) e.getValue();
for (String name:waypoints.getKeys()) {
Map<String, Object> locations = waypoints.getNode(name).getAll();
int x, y = 64, z;
x = (Integer) locations.get("x");
if (locations.containsKey("y")) {
y = (Integer) locations.get("y");
}