Add missing world types (customized and debug) and fixed typo (all world types should be lowercase)

This commit is contained in:
johni0702 2015-04-05 11:28:31 +02:00 committed by Steven Smith
parent ddafc12a7d
commit 997d129d6d
2 changed files with 5 additions and 1 deletions
src/main/java/org/spacehq/mc/protocol/data/game/values

View file

@ -161,8 +161,10 @@ public class MagicValues {
register(WorldType.DEFAULT, "default");
register(WorldType.FLAT, "flat");
register(WorldType.LARGE_BIOMES, "largeBiomes");
register(WorldType.LARGE_BIOMES, "largebiomes");
register(WorldType.AMPLIFIED, "amplified");
register(WorldType.CUSTOMIZED, "customized");
register(WorldType.DEBUG, "debug_all_block_states");
register(WorldType.DEFAULT_1_1, "default_1_1");
register(Animation.SWING_ARM, 0);

View file

@ -6,6 +6,8 @@ public enum WorldType {
FLAT,
LARGE_BIOMES,
AMPLIFIED,
CUSTOMIZED,
DEBUG,
DEFAULT_1_1;
}