Add LargeBiomes WorldType.

This commit is contained in:
feildmaster
2012-08-02 08:55:11 -05:00
parent 110ad8c196
commit 99f251cadb

View File

@@ -9,7 +9,8 @@ import java.util.Map;
public enum WorldType {
NORMAL("DEFAULT"),
FLAT("FLAT"),
VERSION_1_1("DEFAULT_1_1");
VERSION_1_1("DEFAULT_1_1"),
LARGE_BIOMES("LARGEBIOMES");
private final static Map<String, WorldType> BY_NAME = Maps.newHashMap();
private final String name;