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

18w19a data is missing state information for blocks. #5

Closed Cybermaxke closed 6 years ago

Cybermaxke commented 6 years ago

18w19a

http://pokechu22.github.io/Burger/18w19a.json

"blocks": {
            "block": {
                "acacia_bark": {
                    "class": "bds",
                    "display_name": "Acacia Bark",
                    "field": "Z",
                    "hardness": 2.0,
                    "numeric_id": 50,
                    "text_id": "acacia_bark"
                },

num_states, max_state_id, min_state_id and states are missing.

18w16a

http://pokechu22.github.io/Burger/18w16a.json

"blocks": {
            "block": {
                "acacia_bark": {
                    "class": "azl",
                    "display_name": "Acacia Bark",
                    "field": "Z",
                    "hardness": 2.0,
                    "max_state_id": 112,
                    "min_state_id": 112,
                    "num_states": 1,
                    "numeric_id": 50,
                    "states": [],
                    "text_id": "acacia_bark"
                },
Pokechu22 commented 6 years ago

Known issue; I'm currently working on fixing it (I have the block states toping temporarily disabled because it's broken).

Pokechu22 commented 6 years ago

Fixed. I've also regenerated the 18w19a and 18w19b data so it should be present there now.