mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2025-03-13 22:49:51 -04:00
Add missing world types (customized and debug) and fixed typo (all world types should be lowercase)
This commit is contained in:
parent
ddafc12a7d
commit
997d129d6d
2 changed files with 5 additions and 1 deletions
src/main/java/org/spacehq/mc/protocol/data/game/values
|
@ -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);
|
||||
|
|
|
@ -6,6 +6,8 @@ public enum WorldType {
|
|||
FLAT,
|
||||
LARGE_BIOMES,
|
||||
AMPLIFIED,
|
||||
CUSTOMIZED,
|
||||
DEBUG,
|
||||
DEFAULT_1_1;
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue