Package net.minecraftforge.common.BiomeDictionary

Examples of net.minecraftforge.common.BiomeDictionary.Type


              }
            } else if (type.equalsIgnoreCase("dictionary")) {
              if (array != null) {
                ArrayList<Type> tags = new ArrayList<Type>();
                for (int k = 0, j = array.size(); k < j; k++) {
                  Type a = Type.valueOf(array.get(k).getAsString());
                  if (a != null)
                    tags.add(a);
                }
                data = tags.toArray(new Type[tags.size()]);
                t = 6;
View Full Code Here

TOP

Related Classes of net.minecraftforge.common.BiomeDictionary.Type

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.