Browse Source

Changed traveloptions Wueste

remotes/origin/map
Tanja Herche 2 years ago
parent
commit
a4bb55f061
  1. 9
      src/main/java/org/bitbiome/classes/TravelEngine.java
  2. 9
      src/main/java/org/bitbiome/commands/TravelCommand.java

9
src/main/java/org/bitbiome/classes/TravelEngine.java

@ -89,6 +89,15 @@ public class TravelEngine {
return found; return found;
} }
public boolean locationExistsWueste(String name) {
boolean found = false;
for (int i = 0; i < locations.length(); i++)
if (locations.getJSONObject(1).getString("name").equals(name) | locations.getJSONObject(4).getString("name").equals(name)) {
found = true;
}
return found;
}
public Location getLocationByName(String name) { public Location getLocationByName(String name) {
JsonParser jp = new JsonParser(); JsonParser jp = new JsonParser();
JSONObject gameconfig = jp.getJSONObject("gameconfig.json"); JSONObject gameconfig = jp.getJSONObject("gameconfig.json");

9
src/main/java/org/bitbiome/commands/TravelCommand.java

@ -73,12 +73,11 @@ public class TravelCommand implements CommandAPI {
System.out.println(Colors.ANSI_BLUE + "Du hast dein Travel-Pad weggesteckt." + Colors.ANSI_RESET); System.out.println(Colors.ANSI_BLUE + "Du hast dein Travel-Pad weggesteckt." + Colors.ANSI_RESET);
} }
} else {
for (int i = 0; i < locations.length(); i++) {
System.out.println("- " + locations.getJSONObject(i).getString("name"));
}
} else if (travelEngine.getPlayer().getLocation().getName().equalsIgnoreCase("Wueste")) {
System.out.println("- " + locations.getJSONObject(1).getString("name") + "\n" + "- " + locations.getJSONObject(4).getString("name"));
String locationName = scanner.nextLine(); String locationName = scanner.nextLine();
if (travelEngine.locationExists(locationName)) {
if (travelEngine.locationExistsWueste(locationName)) {
travelEngine.travelTo(new Location(locationName, new ArrayList<Mob>(), new ArrayList<Item>())); travelEngine.travelTo(new Location(locationName, new ArrayList<Mob>(), new ArrayList<Item>()));
System.out.println(Colors.ANSI_BLUE + "Du bist nun hierhin gereist: " + locationName + "\n" + Colors.ANSI_RESET); System.out.println(Colors.ANSI_BLUE + "Du bist nun hierhin gereist: " + locationName + "\n" + Colors.ANSI_RESET);
} else { } else {

Loading…
Cancel
Save