forked from matcool/anvil-parser
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from Nyveon/master
Fix for region saving for versions 1.18+
- Loading branch information
Showing
3 changed files
with
30 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# This version removes the chunk's "Level" NBT tag and moves all contained tags to the top level | ||
# https://minecraft.wiki/w/Java_Edition_21w43a | ||
VERSION_21w43a = 2844 | ||
|
||
# This version removes block state value stretching from the storage | ||
# so a block value isn't in multiple elements of the array | ||
VERSION_20w17a = 2529 | ||
|
||
# This version changes how biomes are stored to allow for biomes at different heights | ||
# https://minecraft.wiki/w/Java_Edition_19w36a | ||
VERSION_19w36a = 2203 | ||
|
||
# This is the version where "The Flattening" (https://minecraft.wiki/w/Java_Edition_1.13/Flattening) happened | ||
# where blocks went from numeric ids to namespaced ids (namespace:block_id) | ||
VERSION_17w47a = 1451 |