Example #1
0
  public MapGenVillage(Map<String, String> map) {
    this();

    for (Entry<String, String> entry : map.entrySet()) {
      if (((String) entry.getKey()).equals("size")) {
        this.size = MathHelper.parseIntWithDefaultAndMax((String) entry.getValue(), this.size, 0);
      } else if (((String) entry.getKey()).equals("distance")) {
        this.distance =
            MathHelper.parseIntWithDefaultAndMax((String) entry.getValue(), this.distance, 9);
      }
    }
  }