Commits

Thinkofname authored f1ce6715f19
Remove DEBUG_ALL_BLOCK_STATES due to it being broken
No tags

src/main/java/org/bukkit/WorldType.java

Modified
5 5
6 6 /**
7 7 * Represents various types of worlds that may exist
8 8 */
9 9 public enum WorldType {
10 10 NORMAL("DEFAULT"),
11 11 FLAT("FLAT"),
12 12 VERSION_1_1("DEFAULT_1_1"),
13 13 LARGE_BIOMES("LARGEBIOMES"),
14 14 AMPLIFIED("AMPLIFIED"),
15 - CUSTOMIZED("CUSTOMIZED"),
16 - DEBUG_ALL_BLOCK_STATES("DEBUG_ALL_BLOCK_STATES");
15 + CUSTOMIZED("CUSTOMIZED");
17 16
18 17 private final static Map<String, WorldType> BY_NAME = Maps.newHashMap();
19 18 private final String name;
20 19
21 20 private WorldType(String name) {
22 21 this.name = name;
23 22 }
24 23
25 24 /**
26 25 * Gets the name of this WorldType

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut