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

Fix blocks topping in 22w42a #41

Closed mat-1 closed 2 years ago

mat-1 commented 2 years ago

They changed protected final String to private final String in the identifier class in the new 1.19.3 snapshot, which made it so Burger couldn't find it. (and the blocks topping depends on the identifier class being known)

Pokechu22 commented 2 years ago

Would it be possible to check if the access is private or protected instead of doing 2 separate lookups? You just did that, nice.

Pokechu22 commented 2 years ago

Thanks!