Pokechu22 / Burger

A simple tool for picking out information from the minecraft JARs, primarily useful for developers.
https://b.wiki.vg
MIT License
83 stars 15 forks source link

Not Extracting Blocks, Entities, or Items in 1.20.2<= #52

Open cohenerickson opened 3 months ago

cohenerickson commented 3 months ago

Blocks, Entities, nor Items appear in the output file after extracting with the command below, the same is true for any version above 1.20.2.

python munch.py --download 1.20.2 --output 1.20.2.json --toppings blocks,entities,items

Instead the output file only includes the keys for "language", and "source". Both of which I assume are included by default.

See the difference when extracting data for 1.20.1.

python munch.py --download 1.20.1 --output 1.20.1.json --toppings blocks,entities,items

In this case, the output file includes the expected "blocks", "entities", and "items" keys within the JSON object.