Package cofh.lib.world

Examples of cofh.lib.world.WorldGenDungeon


        log.warn("Entry specifies invalid entity list for 'dungeon' generator! Using 'Pig'!");
        NBTTagCompound tag = new NBTTagCompound();
        tag.setString("EntityId", "Pig");
        mobList.add(new WeightedRandomNBTTag(100, tag));
      }
      WorldGenDungeon r = new WorldGenDungeon(resList, matList, mobList);
      if (entry.has("spawnerFloor")) {
        resList = new ArrayList<WeightedRandomBlock>();
        if (FeatureParser.parseResList(entry.get("spawnerFloor"), resList)) {
          r.floor = resList;
        } else {
View Full Code Here

TOP

Related Classes of cofh.lib.world.WorldGenDungeon

Copyright © 2018 www.massapicom. 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.