Examples of WorldGenMinableLargeVein


Examples of cofh.lib.world.WorldGenMinableLargeVein

    } else if ("large-vein".equals(template)) {
      boolean sparse = true;
      if (isObject) {
        sparse = genObject.has("sparse") ? genObject.get("sparse").getAsBoolean() : sparse;
      }
      return new WorldGenMinableLargeVein(resList, clusterSize, matList, sparse);
    } else if ("lake".equals(template)) {
      boolean useMaterial = false;
      if (isObject) {
        useMaterial = genObject.has("useMaterial") ? genObject.get("useMaterial").getAsBoolean() : useMaterial;
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.