Skip to content

Commit

Permalink
Add missing world types (customized and debug) and fixed typo (all wo…
Browse files Browse the repository at this point in the history
…rld types should be lowercase)
  • Loading branch information
Johni0702 committed Apr 5, 2015
1 parent c4f2c7e commit 89888a4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Expand Up @@ -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);
Expand Down
Expand Up @@ -6,6 +6,8 @@ public enum WorldType {
FLAT,
LARGE_BIOMES,
AMPLIFIED,
CUSTOMIZED,
DEBUG,
DEFAULT_1_1;

}

0 comments on commit 89888a4

Please sign in to comment.