twoolie / NBT

Python Parser/Writer for the NBT file format, and it's container the RegionFile.
MIT License
361 stars 74 forks source link

Fix support for Minecraft version 1.12.2 (data version 1343) #175

Closed steffen-kiess closed 10 months ago

steffen-kiess commented 10 months ago

For data version 1343, the 'Blocks' key is needed. In commit cd0133de7aa8b0023d80769e9fc6a1a78bd9fe57 the code was change to no longer create an AnvilSection if there is no 'BlockStates' key. Change this to also create an AnvilSection if there is a 'Blocks' key.

An example level with this problem can be found at https://media.forgecdn.net/files/2629/540/Island.zip (get_block() returns None for every block without this patch).

twoolie commented 10 months ago

Thanks for the fix <3